This is a simple To-Do List application built with React. It allows users to add and remove tasks.
- Add new tasks
- Remove existing tasks
- Simple and intuitive user interface
To get started with the project, follow these steps:
Make sure you have the following installed:
- Node.js (which includes npm)
- Navigate to the project directory:
Open your terminal (Command Prompt, PowerShell, Terminal, etc.) and navigate to the project directory. For example:
cd path/to/my-todo-app - Install Dependencies:
npm install
- Start the Development Server:
npm start
- Open the Application in a Browser:
The application should automatically open in your default web browser at
If it doesn't, you can manually open your browser and navigate to that URL.
http://localhost:3000
my-todo-app/
├── node_modules/
├── public/
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
├── src/
│ ├── App.css
│ ├── App.js
│ ├── App.test.js
│ ├── ToDo.js
│ ├── index.css
│ ├── index.js
│ └── reportWebVitals.js
├── .gitignore
├── package.json
└── README.md