/tic-tac-toe-app

A game made for two individual to play some box, the winner play same value horizontal or vertical pattern.

Primary LanguageJavaScript

my-tictac-app

Tic tac toe Game

using reactjs The game structure is on a 3 by 3 grid played by two players (X's) and (O's). The winner of the game is known when a value fills 3 squares vertically or horizontally.

Dependencies

node >= 14 To check node version

node -v

Set up

npx create-react-app my-tictac-app
cd src 
del *

#Add new files in src folder index.css, index.js #index.js

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';

#Running

npm start

#Reference React Documentation : https://reactjs.org/tutorial/