Files
sign/apps/web/pages/team.tsx

15 lines
395 B
TypeScript
Raw Normal View History

2022-12-06 20:44:21 +01:00
import type { ReactElement } from "react";
import Layout from "../components/layout";
import Settings from "../components/settings";
import type { NextPageWithLayout } from "./_app";
const TeamPage: NextPageWithLayout = () => {
return <>This is the team page</>;
};
TeamPage.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default TeamPage;