Add Module wrapper

This commit is contained in:
Aj - Thomas
2022-05-10 18:57:04 +02:00
parent 0c0f8247d8
commit 2462671700

View File

@@ -0,0 +1,21 @@
import { Card, FloatingTooltip, Tooltip, useMantineTheme } from '@mantine/core';
import { IModule } from './modules';
export default function ModuleWrapper(props: any) {
const { module }: { module: IModule } = props;
const theme = useMantineTheme();
console.log(module.title);
return (
<Card
mx="sm"
radius="lg"
shadow="sm"
style={{
// Make background color of the card depend on the theme
backgroundColor: theme.colorScheme === 'dark' ? theme.colors.dark[6] : "white",
}}
>
{<module.component />}
</Card>
);
}