Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 944 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 944 Bytes
# 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