import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faClose } from "@fortawesome/free-solid-svg-icons"; import { MouseEventHandler } from "react"; type ModalProps = { children: JSX.Element; close: () => void; }; const cancelClick: MouseEventHandler = (event) => { event.preventDefault(); event.stopPropagation(); }; export default function FullscreenModal(props: ModalProps) { return (
{props.children}
); }