Skip to content

Commit

Permalink
Update incorrect import in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
clauderic authored Oct 23, 2024
1 parent ea50503 commit b5e5962
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/docs/concepts/sortable.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ Sortable elements are both [Droppable](/concepts/droppable) and [Draggable](/con
The `Sortable` class is a thin wrapper that composes the `Draggable` and `Droppable` classes to make it simple to create sortable lists.

```js
import {Sortable, DragDropManager} from '@dnd-kit/dom';
import {DragDropManager} from '@dnd-kit/dom';
import {Sortable} from '@dnd-kit/dom/sortable';

const manager = new DragDropManager();

Expand Down

0 comments on commit b5e5962

Please sign in to comment.