import { CSSProperties, ReactNode } from 'react'; import { Vierkant } 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'; interface GameBarModuleProps { children?: ReactNode; } function GameBarModule(props: GameBarModuleProps) { return {props.children} } var GameBarSpacer = () =>
; var GameBarAlignStyle: CSSProperties = { display: "inline-block" } export function GameBar(props: { turn: boolean; player1: boolean; }) { return

{ props.turn == props.player1 ? "Jouw beurt" : "Tegenstander" }

0-0
00:00
; }