├── Images
└── demo.png
├── src
├── img
│ └── bg.jpg
├── setupTests.js
├── App.test.js
├── App.js
├── components
│ ├── Square.js
│ ├── Board.js
│ └── Game.js
├── index.css
├── reportWebVitals.js
├── index.js
├── logo.svg
└── App.css
├── public
├── favicon.png
├── robots.txt
├── manifest.json
└── index.html
├── package.json
├── LICENSE
└── README.md
/Images/demo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mridul0703/Tic-Tac-Toe/HEAD/Images/demo.png
--------------------------------------------------------------------------------
/src/img/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mridul0703/Tic-Tac-Toe/HEAD/src/img/bg.jpg
--------------------------------------------------------------------------------
/public/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mridul0703/Tic-Tac-Toe/HEAD/public/favicon.png
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom';
6 |
--------------------------------------------------------------------------------
/src/App.test.js:
--------------------------------------------------------------------------------
1 | import { render, screen } from '@testing-library/react';
2 | import App from './App';
3 |
4 | test('renders learn react link', () => {
5 | render(
Welcome to my Tic-Tac-Toe game!
5 | 6 | 7 |
9 |