https://github.com/harshitrv/tictactoe
TicTacToe game built using React.js
https://github.com/harshitrv/tictactoe
reactjs
Last synced: about 1 month ago
JSON representation
TicTacToe game built using React.js
- Host: GitHub
- URL: https://github.com/harshitrv/tictactoe
- Owner: HarshitRV
- Created: 2024-01-21T17:54:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-21T17:54:58.000Z (over 1 year ago)
- Last Synced: 2025-02-17T14:44:44.434Z (4 months ago)
- Topics: reactjs
- Language: JavaScript
- Homepage: https://nandc.netlify.app/
- Size: 257 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tic Tac Toe Game
This is a simple Tic Tac Toe game built with React.
## Installation
First, clone the repository:
```sh
git clone
```Then, navigate into the project directory and install the dependencies:
```sh
cd
bun i
```## Usage
To start the development server, run:
```sh
bun run dev
```
## Project Structure
```
├── README.md
├── package.json
├── index.html
├── vite.config.js
├── public
│ ├── bg-pattern-dark.png
│ ├── bg-pattern.png
│ └── game-logo.png
├── src
│ ├── App.jsx
│ ├── components
│ │ ├── Board.jsx
│ │ ├── GameOver.jsx
│ │ ├── Log.jsx
│ │ └── Player.jsx
│ ├── index.css
│ ├── index.jsx
│ ├── utils.js
│ └── assets
│ ├── react.svg
└── yarn.lock
```