12 lines
195 B
TypeScript
12 lines
195 B
TypeScript
import React from 'react'
|
|
import PointsCreator from './creator/pointsCreator'
|
|
|
|
function Points() {
|
|
return (
|
|
<>
|
|
<PointsCreator />
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Points |