mirror of
https://github.com/Vomitblood/stort.git
synced 2025-03-26 08:41:00 +08:00
20 lines
392 B
TypeScript
20 lines
392 B
TypeScript
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>
|
|
);
|
|
};
|