import { ReactNode, CSSProperties } from 'react'; import { Button, Vierkant, CheckBox, Input } from './ui'; import { DialogBox } from './dialogBox'; import BuildRoundedIcon from '@material-ui/icons/BuildRounded'; export function CurrentGameSettings(/*props: CurrentGameSettingsProps*/) { return

Geen tijdslimiet
Standaardregels
Gerangschikt

; } function GameSettingsSection(props: { children?: ReactNode; title: string; state: boolean; noMarginBottom?: boolean; }) { return {props.title}
{props.children}
} function GameRule(props: { title: string; description: string; style?: CSSProperties; }) { return

{props.title}

{props.description}

; } export function EditGameSettings() { return
Timer gebruiken voor bijde spelers
; }