import { Box, Button, Dialog, DialogActions, DialogContent, DialogTitle, Typography } from '@mui/material'; import CancelRoundedIcon from '@mui/icons-material/CancelRounded'; import PropTypes from "prop-types"; const Popup = ({showupdate,setShowupdate,id,handleUpdate, title, children, openPopup, setOpenPopup,resetForm,handleSubmit}) => { // const { title, children, openPopup, setOpenPopup } = props; Popup.propTypes = { id : PropTypes.number.isRequired, } return ( {title} {children} ) } export default Popup;