import { ReactNode } from 'react'; import { Vierkant } from './ui'; import CancelIcon from '@material-ui/icons/Cancel'; export function DialogBox(props: { children: ReactNode; title: string; onclick?: () => void; hidden?: boolean; className?: string; }) { return

{props.title}

{props.children}
; }