This is a simple Todo App built using React as a learning project. It allows you to add tasks, remove tasks, remove all tasks, import tasks, and export tasks.
A live version of the app is deployed here which is hosted on Cloudflare Pages.
- Add Tasks: You can add new tasks to the todo list.
- Remove Tasks: You can remove individual tasks from the todo list.
- Remove All: You can remove all tasks from the todo list.
- Import: You can import tasks from a JSON file.
- Export: You can export tasks to a JSON file.
To run the app locally, follow these steps:
- Clone the repository:
git clone https://github.com/VaibhavSys/react-todo-app.git
- Navigate to the project directory:
cd react-todo-app
- Install the dependencies:
npm install
- Start the development server:
npm run dev
- Open your browser and visit http://localhost:5173
To import tasks into the web app, the file must be formatted in JSON format and contain an array of strings.
For example:
["Task 1", "Task 2", "Task 3"]
This project is licensed under the MIT License.