fix responsive all pages & change style page list blog and blog item & add date picker

This commit is contained in:
Ehsan
2024-08-23 18:57:28 +03:30
parent c62fb78f8c
commit 9701547d1f
35 changed files with 19276 additions and 225 deletions
@@ -0,0 +1,18 @@
import { Box, Modal } from "@mui/material"
import { styleDefault } from "@/mui"
import DatePicker from "@/app/component/datePicker"
function ModalDatePicker({ open, handleClose }) {
return (
<Modal
open={open}
onClose={handleClose}
>
<Box sx={styleDefault}>
<DatePicker />
</Box>
</Modal>
)
}
export default ModalDatePicker