2022-09-08 17:21:17 +00:00
|
|
|
import * as React from "react";
|
|
|
|
import { Box } from "@mui/material";
|
2022-09-20 10:07:27 +00:00
|
|
|
import Tariffs from "../Tariffs/";
|
2022-09-08 17:21:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
const Content: React.FC = () => {
|
|
|
|
return (
|
|
|
|
<React.Fragment>
|
|
|
|
<Box sx={{
|
|
|
|
width: "100%",
|
2022-09-10 18:39:16 +00:00
|
|
|
height: "calc(100vh - 85px)",
|
2022-09-08 17:21:17 +00:00
|
|
|
display: "flex",
|
|
|
|
flexDirection: "column",
|
2022-09-10 18:39:16 +00:00
|
|
|
alignItems: "center",
|
2022-09-12 10:32:05 +00:00
|
|
|
overflow: "auto",
|
|
|
|
overflowY: "auto",
|
|
|
|
padding: "60px"
|
2022-09-08 17:21:17 +00:00
|
|
|
}}>
|
2022-09-20 10:07:27 +00:00
|
|
|
<Tariffs />
|
2022-09-08 17:21:17 +00:00
|
|
|
</Box>
|
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default Content;
|