mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
13 lines
196 B
TypeScript
13 lines
196 B
TypeScript
import Layout from '@/components/ui/Layout';
|
|
import { NextPage } from 'next';
|
|
|
|
const Home: NextPage = () => {
|
|
return (
|
|
<Layout>
|
|
<div></div>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default Home;
|