import { Dispatch, SetStateAction } from "react"; import Button from "./Button"; export type PopupProps = { setState: Dispatch>; state?: boolean; children: React.ReactNode; }; export default function Popup(props: PopupProps): JSX.Element { return (
{ props.setState(false); }} />
{props.children}
); }