This is a Tic Tac Toe web application built using Create React App. The app allows users to play the classic Tic Tac Toe game against either another human player or an unbeatable AI opponent.
- Two Game Modes: Human vs. Human, Human vs. AI
- Unbeatable AI using the Minimax algorithm
- Interactive game board with smooth user interface
- Real-time status updates and notifications
- Restart option to play again
-
Clone the repository to your local machine using:
git clone https://github.com/your-username/tic-tac-toe-app.git
-
Navigate to the project directory:
cd tic-tac-toe-app
-
Install the required dependencies:
npm install
-
Start the development server:
npm start
-
Open your browser and go to
http://localhost:3000
to play the Tic Tac Toe game.
Play the Tic Tac Toe game online! Visit the hosted website at TicTacToe
- React.js: Frontend framework for building the user interface.
- Create React App: Tool to set up a modern React project with no configuration needed.
- Minimax Algorithm: Used to implement the unbeatable AI.