Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.32 KB

README.md

File metadata and controls

47 lines (30 loc) · 1.32 KB

Tic Tac Toe

This project is part of the Free Code Camp's front-end track. I'll build a Tic Tac Toe game using React. As it's a PWA (Progressive Web App), you can add it to the Home screen on your smartphone and play the game wherever you are! To do that you just need to open the link on your browser when you are using your phone and select the "Add to Home screen" option from the top right dropdown menu.

Functionality

  • I can play a game of Tic Tac Toe with the computer.
  • My game will reset as soon as it's over so I can play again.
  • I can choose whether I want to play as X or O.

Tic Tac Toe mobile Tic Tac Toe desktop

Technologies used

This app is built with React. I used Create React App to get it started.

For testing I used Jest.

Running

Clone this repo:

$ git clone https://github.com/groundberry/react-tic-tac-toe

Install all dependancies:

$ npm install

Start the server:

$ npm start

Testing

Run the tests:

$ npm run test

Unit tests