An open API service indexing awesome lists of open source software.

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

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
```