adminFront/src/Components/Content/index.tsx

24 lines
447 B
TypeScript
Raw Normal View History

2022-09-08 17:21:17 +00:00
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",
2022-09-09 13:54:49 +00:00
alignItems: "center"
2022-09-08 17:21:17 +00:00
}}>
2022-09-09 13:54:49 +00:00
<Users />
2022-09-08 17:21:17 +00:00
</Box>
</React.Fragment>
);
}
export default Content;