push rasad front on new repo
This commit is contained in:
18
src/pages/PoultriesDetailsPage.js
Normal file
18
src/pages/PoultriesDetailsPage.js
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user