19 lines
584 B
JavaScript
19 lines
584 B
JavaScript
import { Box } from "@mui/material";
|
|
import { Grid } from "../components/grid/Grid";
|
|
import { PoultriesDetails } from "../features/province/components/poultries-details/PoultriesDetails";
|
|
import { BackButton } from "../components/back-button/BackButton";
|
|
|
|
const PoultriesDetailsPage = () => {
|
|
return (
|
|
<Box display={"flex"} justifyContent="center">
|
|
<Grid container direction="column" xs={12} sm={12} md={10} lg={10}>
|
|
<Grid>
|
|
<BackButton />
|
|
</Grid>
|
|
<PoultriesDetails />
|
|
</Grid>
|
|
</Box>
|
|
);
|
|
};
|
|
export default PoultriesDetailsPage;
|