mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import { NextPage } from 'next';
|
|
|
|
const Home: NextPage = () => {
|
|
return <h1 className="text-3xl font-bold underline">Hello world!</h1>;
|
|
};
|
|
|
|
export default Home;
|