mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
17 lines
296 B
TypeScript
17 lines
296 B
TypeScript
import Layout from '@/components/ui/Layout';
|
|
import { NextPage } from 'next';
|
|
|
|
interface AccountPageProps {}
|
|
|
|
const AccountPage: NextPage<AccountPageProps> = () => {
|
|
return (
|
|
<Layout>
|
|
<div>
|
|
<h1>Account Page</h1>
|
|
</div>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default AccountPage;
|