comicbox/pages/index.tsx

12 lines
202 B
TypeScript
Raw Normal View History

import type { NextPage } from 'next';
2022-07-19 20:32:51 +00:00
const Home: NextPage = () => {
return (
<main>
<h1 className='text-4xl'>Hello, World!</h1>
</main>
);
};
export default Home;