import { Modal } from '@mui/material'; import { Box } from '@mui/system'; import ContactForm from '../../forms/contact/ContactForm'; import ShippingDetailsForm from '../../forms/shipping-details/ShippingDetailsForm'; const ShippingModal = ({ open, handleClose, handleChangeShipping, handleChangeContact, }) => { return ( {open.type === 'Shipping' && ( )} {open.type === 'Contact' && ( )} ); }; export default ShippingModal;