import { CSSProperties, ReactNode } from 'react'; import { Vierkant, Bubble } from './ui'; import SettingsRoundedIcon from '@material-ui/icons/SettingsRounded'; import ExitToAppRoundedIcon from '@material-ui/icons/ExitToAppRounded'; import NavigateNextRoundedIcon from '@material-ui/icons/NavigateNextRounded'; import NavigateBeforeRoundedIcon from '@material-ui/icons/NavigateBeforeRounded'; function GameBarModule(props: { children?: ReactNode; onclick?: () => void; }) { return {props.children} } var GameBarSpacer = () =>
; var GameBarAlignStyle: CSSProperties = { display: "inline-block" } export function GameBar(props: { turn: boolean; player1: boolean; active: boolean; resignFunction: () => void; }) { return

{ !props.active ? "Wachten op tegenstander..." : props.turn == props.player1 ? "Jouw beurt" : "Tegenstander" }

0-0
00:00
; }