frontend/pages/index.tsx
2022-10-22 02:57:42 +03:00

12 lines
148 B
TypeScript

import type { NextPage } from 'next'
const Home: NextPage = () => {
return (
<div>
hello world
</div>
)
}
export default Home