index.tsx 225 B

123456789
  1. import { ReactElement } from 'react';
  2. import { Main } from '../components/layouts/Main/Main';
  3. export default function Home() {
  4. return <Main />;
  5. }
  6. Home.getLayout = function getLayout(page: ReactElement) {
  7. return page;
  8. };