add basic mobile responsive layout

This commit is contained in:
jeffvli
2025-11-19 19:23:44 -08:00
parent 485fe8085c
commit c763824803
26 changed files with 1930 additions and 40 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Drawer as MantineDrawer, DrawerProps as MantineDrawerProps } from '@mantine/core';
import { ReactNode } from 'react';
interface DrawerProps extends MantineDrawerProps {
children?: ReactNode;
}
export const Drawer = ({ children, ...props }: DrawerProps) => {
return <MantineDrawer {...props}>{children}</MantineDrawer>;
};