14 lines
200 B
TypeScript
Executable File
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
|