26 lines
550 B
TypeScript
26 lines
550 B
TypeScript
![]() |
import * as React from "react";
|
|||
|
import { Box } from "@mui/material";
|
|||
|
import theme from "../../theme";
|
|||
|
import Users from "../Users";
|
|||
|
|
|||
|
|
|||
|
const Content: React.FC = () => {
|
|||
|
return (
|
|||
|
<React.Fragment>
|
|||
|
<Box sx={{
|
|||
|
width: "100%",
|
|||
|
height: "100%",
|
|||
|
display: "flex",
|
|||
|
flexDirection: "column",
|
|||
|
justifyContent: "space-between",
|
|||
|
alignItems: "center",
|
|||
|
border: "1px solid purple"
|
|||
|
}}>
|
|||
|
хочу быть 100% высоты
|
|||
|
</Box>
|
|||
|
</React.Fragment>
|
|||
|
);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
export default Content;
|