├── .gitignore ├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── index.html │ └── robots.txt └── src │ ├── App.jsx │ ├── Game.jsx │ ├── Home.jsx │ ├── index.js │ └── style.css ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/Game.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/src/Game.jsx -------------------------------------------------------------------------------- /client/src/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/src/Home.jsx -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/client/src/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bihan001/multiplayer-tic-tac-toe/HEAD/server.js --------------------------------------------------------------------------------