import { MouseEventHandler } from "react"; import Popup from "reactjs-popup"; export function Box({title, placeholder, id}: {title:string; placeholder:string; id:string}) { return(
{title}
); } export function Button({title, className, onClickFunc}: {title:string; className:string|undefined; onClickFunc: MouseEventHandler}) { return( ); } export function Popup_Button({title, className}: {title:string; className:string|undefined;}) { return( {title} } position="right center" modal nested> {close => (
{title}
This is a popup example.
)}
); } export function Output({id, text}: {id:string; text:string}) { return(
Output

); }