import React from "react"; import { Modal as BaseModal } from "baseui/modal"; export interface ModalProps { children: React.ReactNode; onClose: () => void; isOpen: boolean; } /** * This is the `` component
* Use this to gather files from the user */ const Modal: React.FC = (props) => { return {props.children}; }; export default Modal;