Tic Tac Toe

{{cell ? 'X' : 'O'}}

You: {{aiPlayer ? 'O' : 'X'}}

Player Turn: {{game.state.playerTurn ? 'X' : 'O'}}

{{getEndGameText()}}