mirror of
https://github.com/Vomitblood/stort.git
synced 2025-03-26 08:41:00 +08:00
11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
import { Box } from "@mui/material";
|
|
import { HeaderBar } from "../HeaderBar/HeaderBar";
|
|
|
|
export const Layout = () => {
|
|
return (
|
|
<Box>
|
|
<HeaderBar />
|
|
</Box>
|
|
);
|
|
};
|