// This is just a sample script. Paste your real code (javascript or HTML) here.
const ContentContainer = styled("div", {
shouldForwardProp: (prop) => prop !== "drawerWidth",
})(({
theme,
drawerWidth
}) => ({
marginLeft: drawerWidth === 230 ? 230 : 0,
transition: "margin-left 0.3s ease",
width: "100%",
height: "100%", // Set height to 100vh }));