interface VoerBordProps { width: number; height: number; } export function VoerBord(props: VoerBordProps) { return { [...Array(props.height)].map(() => ( {[...Array(props.width)].map(() => ( ))} )) }
}