You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# React + Vite
# Task Management App
## Description
A React-based task management application that allows users to add, edit, and delete tasks. The tasks are stored in the browser's local storage, ensuring persistence even after page refresh.The application utilizes context API for state management, making it scalable and easy to maintain.
## Features
- Add new tasks with a task name, status, and due date.
- Edit existing tasks.
- Delete tasks.
- Tasks are persisted in local storage.
- Simple user interface created using Bootstrap for styling.
## Project Structure
- `TaskContext.js`: Contains the context and provider for managing tasks.
- `TaskForm.js`: A form component for adding and editing tasks.
- `TaskList.js`: Displays the list of tasks.
- `TaskItem.js`: Represents individual task items within the task list.
- `App.js`: The main application component that integrates all other components.
# Task-Manager