Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 1.08 KB

File metadata and controls

22 lines (14 loc) · 1.08 KB

Build a drag and drop to-do list

This repository is the companion to the "Build a drag and drop to-do list" practice exercise.

Build a Kanban-style to do list, where you can drag the cards from one column to the other to mark them as "To do", "In Progress" or "Done".

  • app should have three columns: "To do", "In progress", "Done"
  • users can drag and drop cards from one column to the other
  • users can add tasks by typing into an input above the columns
  • users can delete tasks by dragging and dropping over a "trash" area at the bottom of the columns

Check out the exercise description for more details and tips on the implementation.

To get started, you can clone this starter repo. When you're ready to check your work, check out the official solution.

Getting started:

  • npm install
  • npm run dev

Add your code to the src/components/ToDoList.jsx file.