dnd-kit
Installation
SKILL.md
@dnd-kit Best Practices
Basic Sortable List
import { DndContext, closestCenter, type DragEndEvent } from "@dnd-kit/core";
import { SortableContext, verticalListSortingStrategy, arrayMove } from "@dnd-kit/sortable";
function SortableList() {
const [items, setItems] = useState(["a", "b", "c"]);