A simple Task Manager built with React, HTML, CSS, and JavaScript.
This project allows you to add, edit, and manage tasks with a clean and interactive interface.
- Add new tasks dynamically
- Delete tasks
- Mark tasks as completed
- Filter tasks: All, Completed, Pending
- Responsive design
- React
- JavaScript
- HTML
- CSS
TaskManager/ │ ├── public/ ├── src/ │ ├── components/ # React components │ ├── App.js │ ├── index.js │ └── index.css ├── package.json └── README.md
- Clone the repository:
git clone https://github.com/geeta196/Task-Manager.git
Navigate to the project directory:
bash
Copy code
cd Task-Manager
Install dependencies:
bash
Copy code
npm install
Start the development server:
bash
Copy code
npm start