mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 15:05:48 +01:00
19 lines
410 B
TypeScript
19 lines
410 B
TypeScript
|
|
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: {},
|
||
|
|
};
|
||
|
|
};
|