30 lines
790 B
JavaScript
30 lines
790 B
JavaScript
|
|
import { Box } from "@mui/material";
|
||
|
|
import { Grid } from "../components/grid/Grid";
|
||
|
|
import { SPACING } from "../data/spacing";
|
||
|
|
import { ProvinceUserFileInfo } from "../features/inspector/components/province-user-file-info/ProvinceUserFileInfo";
|
||
|
|
|
||
|
|
const ProvinceUserFile = () => {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Box display={"flex"} justifyContent="center">
|
||
|
|
<Grid
|
||
|
|
container
|
||
|
|
direction="column"
|
||
|
|
justifyContent="center"
|
||
|
|
xs={12}
|
||
|
|
sm={12}
|
||
|
|
md={10}
|
||
|
|
lg={10}
|
||
|
|
>
|
||
|
|
<Grid container justifyContent="space-between" gap={SPACING.SMALL}>
|
||
|
|
<Grid xs={12}>
|
||
|
|
<ProvinceUserFileInfo />
|
||
|
|
</Grid>
|
||
|
|
</Grid>
|
||
|
|
</Grid>
|
||
|
|
</Box>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
export default ProvinceUserFile;
|