import { ReactNode } from 'react'; import { Vierkant } from './ui'; import CancelIcon from '@material-ui/icons/Cancel'; interface DialogBoxProps { children: ReactNode; title: string; } export function DialogBox(props: DialogBoxProps) { return

{props.title}

{props.children}
}