31 lines
774 B
JavaScript
31 lines
774 B
JavaScript
import { Box } from "@mui/material";
|
|
import { Grid } from "../components/grid/Grid";
|
|
import { SPACING } from "../data/spacing";
|
|
import { ManageFarmComponent } from "../features/inspector/components/manage-farm-component/ManageFarmComponent";
|
|
|
|
const ManageFarm = () => {
|
|
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}>
|
|
<ManageFarmComponent />
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Box>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default ManageFarm;
|