11 lines
202 B
TypeScript
Executable file
11 lines
202 B
TypeScript
Executable file
import type { NextPage } from 'next';
|
|
|
|
const Home: NextPage = () => {
|
|
return (
|
|
<main>
|
|
<h1 className='text-4xl'>Hello, World!</h1>
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default Home;
|