import {ReactNode, useState} from "react"; import "../style/popup.css" export interface PopupProps { children: ReactNode[] | ReactNode, displayState: boolean, onClose: () => void } export default function Popup({children, displayState, onClose}: PopupProps) { return (