Files
Homarr/src/pages/board/index.tsx

19 lines
410 B
TypeScript
Raw Normal View History

2023-07-29 20:56:20 +02:00
import { Title } from '@mantine/core';
import { GetServerSideProps } from 'next';
import { MainLayout } from '~/components/layout/main';
export default function BoardPage() {
return (
<MainLayout>
<Title order={1}>BoardPage</Title>
</MainLayout>
);
}
export const getServerSideProps: GetServerSideProps = async () => {
console.log('getServerSideProps');
return {
props: {},
};
};