tictactoe
- What is tic tac toe?
- Build a data structure to represent the game board.
- Write a function that updates the board with somebody's chosen position. Don't worry about detecting if somebody has won.
- Write a function to detect that somebody has won.
- What should the UI look like? Use excalidraw to mock up the layout of the page
- Set up codesandbox.io with React and draw the board using the data structure we built earlier. Don't make it interactive, just draw the board.
- Add a feature so that clicking on the board fills the spot.
- Show a message when the game is over.