import { ReactNode, Component } from 'react'; import { Button, Vierkant, CheckBox, Input } from './ui'; import { DialogBox } from './dialogBox'; import BuildRoundedIcon from '@material-ui/icons/BuildRounded'; export class CurrentGameSettings extends Component { state: { editGameRulesDialogVisible: boolean; } = { editGameRulesDialogVisible: false } showEditGameRules = () => this.setState({ editGameRulesDialogVisible: true }); hideEditGameRules = () => this.setState({ editGameRulesDialogVisible: false }); render() { return
Geen tijdslimiet
Standaardregels
Gerangschikt
{props.description}
*/ /*