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

14 lines
328 B
TypeScript
Raw Normal View History

2022-12-06 13:45:23 +01:00
import type { ReactElement } from "react";
import Layout from "../components/layout";
import type { NextPageWithLayout } from "./_app";
2022-11-24 12:28:46 +01:00
2022-12-06 13:45:23 +01:00
const Page: NextPageWithLayout = () => {
return <p>hello world</p>;
};
2022-11-14 23:12:51 +01:00
2022-12-06 13:45:23 +01:00
Page.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
2022-11-14 23:12:51 +01:00
2022-12-06 13:45:23 +01:00
export default Page;