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.
node >= 14 To check node version
node -v
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/