Challenge: Task Management App
Build a task management application using React that allows adding, deleting, and filtering tasks by their completion status. Learn to apply the useMemo hook to enhance performance by caching filtered results and reducing unnecessary recalculations. This lesson guides you through handling state and event management in a functional component context.
We'll cover the following...
We'll cover the following...
Task
Create a Task Manager application in React, allowing users to add tasks, mark tasks as completed, and filter tasks based on completion status. The use of useMemo optimizes the filtering process, and the UI provides a clean and interactive task management experience.
Expected output
The provided layout is a React application designed for task ...