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

{props.title}

{props.children}
; }