import * as React from 'react';
import Box, { BoxProps } from '@mui/joy/Box';
import Sheet from '@mui/joy/Sheet';
function Root(props: BoxProps) {
return (
);
}
function Header(props: BoxProps) {
return (
);
}
function SideNav(props: BoxProps) {
return (
);
}
function SidePane(props: BoxProps) {
return (
);
}
function Main(props: BoxProps) {
return (
);
}
function SideDrawer(
props: BoxProps & { onClose: React.MouseEventHandler },
) {
const { onClose, ...other } = props;
return (
({
position: 'absolute',
inset: 0,
bgcolor: `rgba(${theme.vars.palette.neutral.darkChannel} / 0.8)`,
})}
/>
{props.children}
);
}
export default {
Root,
Header,
SideNav,
SidePane,
SideDrawer,
Main,
};