app/src/pages/index.tsx
2022-08-10 00:20:31 +03:00

14 lines
200 B
TypeScript
Executable File

import type { NextPage } from 'next'
import Head from 'next/head'
import Image from 'next/image'
const Home: NextPage = () => {
return (
<div>
Hello
</div>
)
}
export default Home