stort/src/components/Generic/Layout.tsx

11 lines
180 B
TypeScript

import { Box } from "@mui/material";
import { HeaderBar } from "../HeaderBar/HeaderBar";
export const Layout = () => {
return (
<Box>
<HeaderBar />
</Box>
);
};