import * as React from 'react'; import PropTypes from 'prop-types'; import Box from '@mui/material/Box'; import Button from '@mui/material/Button'; import Drawer from '@mui/material/Drawer'; import IconButton from '@mui/material/IconButton'; import CloseIcon from '@mui/icons-material/Close'; import ExpandMoreRoundedIcon from '@mui/icons-material/ExpandMoreRounded'; import Info from './Info'; function InfoMobile({ totalPrice }) { const [open, setOpen] = React.useState(false); const toggleDrawer = (newOpen) => () => { setOpen(newOpen); }; const DrawerList = ( ); return (
{DrawerList}
); } InfoMobile.propTypes = { totalPrice: PropTypes.string.isRequired, }; export default InfoMobile;