Files
the-biergarten-app/pages/account/index.tsx
2023-02-13 13:08:05 -05:00

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;