import { MouseEventHandler } from "react"; import React 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 Output({ id, text }: { id: string; text: string }) { return (
Output

{text}

); }