Modal.jsx 308 B

1234567891011121314151617
  1. import React from "react";
  2. import SidePanel from "./SidePanel";
  3. export const Modal = ({ setShow, show, ...rest }) => {
  4. return (
  5. <SidePanel
  6. open={show}
  7. onClose={() => setShow(false)}
  8. position="right"
  9. modal
  10. width="33%"
  11. {...rest}
  12. />
  13. );
  14. };
  15. export default Modal;