ohctechv3/.svn/pristine/52/525bd7e252c77dbb12945e00cc559089842fcc9d.svn-base
2024-10-28 15:03:36 +05:30

19 lines
296 B
Plaintext

// import Box from "@mui/material/Box";
import Box from "@mui/material/Box";
const RightBar = () => {
return (
<Box
bgcolor="#E0AED0"
flex={1}
p={2}
sx={{ display: { xs: "none", sm: "block" } }}
>
Right
</Box>
);
};
export default RightBar;