stort/src/components/HeaderBar.tsx

20 lines
392 B
TypeScript
Raw Normal View History

2024-07-30 20:55:36 +08:00
import { AppBar, Box, Toolbar } from "@mui/material";
export const HeaderBar = () => {
return (
<AppBar position="static">
<Toolbar
disableGutters
sx={{
height: "64px",
p: 1,
}}
>
hello this is the left side
<Box sx={{ flexGrow: 1 }} />
hello this is the right side
</Toolbar>
</AppBar>
);
};