Skip to content

KlemensE/tic-tac-toe--skeleton

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to get started

Clone the repo

git clone https://github.com/toburger/tic-tac-toe--skeleton.git tic-tac-toe

Either kickstart with npm

cd tic-tac-toe
npm install
code . # open with the editor of your choice
npm start

Otherwise kickstart with yarn

cd tic-tac-toe
yarn
code . # open with the editor of your choice
yarn start

Examples of the different states used in ./src/App.js

state1

Show the initial state:

state2

Show the state after player 'X' made a move:

state3

Show a more evolved board:

state4

Show the state with a winner:

state5

Show the state with a draw:

About

The skeleton for a React based Tic-Tac-Toe game.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 57.6%
  • HTML 40.2%
  • CSS 2.2%