https://github.com/andreynav/tic-tac-toe
Tic-tac-toe simple game | React
https://github.com/andreynav/tic-tac-toe
react styled-components typescript
Last synced: 3 months ago
JSON representation
Tic-tac-toe simple game | React
- Host: GitHub
- URL: https://github.com/andreynav/tic-tac-toe
- Owner: andreynav
- License: apache-2.0
- Created: 2023-02-12T11:28:34.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T14:25:21.000Z (over 2 years ago)
- Last Synced: 2025-02-12T23:39:34.536Z (5 months ago)
- Topics: react, styled-components, typescript
- Language: TypeScript
- Homepage: https://tic-tac-toe-andyn.vercel.app/
- Size: 239 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README


# General Notes
The current project is a project of simple tic-tac-toe game executed due to the React and Styled components.
## Demo
You can open and use the app by [tic-tac-toe app link](https://tic-tac-toe-andyn.vercel.app/).
## Project structure
The project has multilayer structure:
- `public` - used to keep static content for builds
- `assets` - used to keep static content
- `components` - used to keep react components
- `hooks` - used to keep hooks
- `styles` - used to keep styles
- `utils` - used to keep utils for helping## Dependencies
The project has the next dependencies in the [package.json](package.json) file.

## Installation
1. Clone project to your PC by the following command:
```console
git clone https://github.com/andreynav/tic-tac-toe.git
```2. Open the root directory and enter the following command:
```console
yarn
```3. In the root directory create `.env` file and add inside it a row `PORT=3003` (or any desired port).
## Running project
To run project, open the root directory and enter the following command:
```console
yarn start
```The command runs the app in the development mode.
Open [http://localhost:3003](http://localhost:3003) to view it in your browser.## License
The project is open source software provided under the [Apache License 2.0](LICENSE.md).