Files
Dwinzo_Demo/app/src/modules/simulation/events/points/points.tsx
2025-06-10 15:28:23 +05:30

12 lines
195 B
TypeScript

import React from 'react'
import PointsCreator from './creator/pointsCreator'
function Points() {
return (
<>
<PointsCreator />
</>
)
}
export default Points