import React, { FC, CSSProperties } from "react"; interface IProps { handleClose: () => void; show: boolean; } export const Modal: FC = ({ handleClose, show, children }) => { const showHideStyle: CSSProperties = show ? { display: "block", zIndex: 10 } : { display: "none", zIndex: 10 }; return (
{children}
); };