快速开始
急于开始?本文可以帮助你快速熟悉 dnd kit 的核心概念。
Context provider
import React from "react";
import { DndContext } from "@dnd-kit/core";
import { Draggable } from "./Draggable";
import { Droppable } from "./Droppable";
function App() {
return (
<DndContext>
<Draggable />
<Droppable />
</DndContext>
);
}Droppable
Draggable
组装所有的代码片段

更复杂一点的示例
最后更新于