12 lines
119 B
TypeScript
12 lines
119 B
TypeScript
import {FC} from "react";
|
|
|
|
const MainPage: FC = () => {
|
|
|
|
return (<>
|
|
|
|
</>
|
|
|
|
)
|
|
}
|
|
|
|
export default MainPage; |