This is a simple To-Do List app created with React. It allows you to manage your daily tasks efficiently by adding new tasks, marking them as completed, and deleting them. The app stores your tasks locally, so they persist even after a page refresh.
- Add Tasks: Quickly add new tasks to your to-do list.
- Complete Tasks: Mark tasks as completed with a satisfying sound effect.
- Delete Tasks: Remove tasks from your list with a single click.
- Persistent Storage: Tasks are saved in
localStorage
, so they are retained even after refreshing the browser. - Toast Notifications: Provides feedback with toast notifications for actions like adding, completing, or deleting tasks.
- React: For building the user interface.
- React Toastify: For displaying notifications.
- localStorage: To persist data across browser sessions.