├── .gitignore ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── Board │ │ ├── index.jsx │ │ └── styles.module.css │ ├── Game │ │ ├── index.jsx │ │ └── styles.module.css │ └── Square │ │ ├── index.jsx │ │ └── styles.module.css ├── global.css └── main.jsx └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Board/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/components/Board/index.jsx -------------------------------------------------------------------------------- /src/components/Board/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/components/Board/styles.module.css -------------------------------------------------------------------------------- /src/components/Game/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/components/Game/index.jsx -------------------------------------------------------------------------------- /src/components/Game/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/components/Game/styles.module.css -------------------------------------------------------------------------------- /src/components/Square/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/components/Square/index.jsx -------------------------------------------------------------------------------- /src/components/Square/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/components/Square/styles.module.css -------------------------------------------------------------------------------- /src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/global.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/src/main.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tulna07/reactjs-tic-tac-toe/HEAD/vite.config.js --------------------------------------------------------------------------------