Basic layout styling

This commit is contained in:
Aj - Thomas
2022-05-10 18:58:21 +02:00
parent 6024391414
commit 72f19d450c
3 changed files with 42 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
import { Navbar as MantineNavbar } from '@mantine/core';
import DateComponent, { DateModule } from '../modules/date/DateModule';
import ModuleWrapper from '../modules/moduleWrapper';
export default function Navbar() {
return (
<MantineNavbar
height="100%"
hiddenBreakpoint="md"
hidden
width={{
base: 'auto',
}}
>
<ModuleWrapper module={DateModule} />
</MantineNavbar>
);
}