You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 21, 2026. It is now read-only.
Can we implement something like ?
<DndContext onDragEnd={onDragEnd} onDragStart={onDragStart}> <SortableContext items={items}> <DndContext onDragEnd={onDragEnd} onDragStart={onDragStart}> <!-- child context 1 --> <SortableContext items={items1}> render items1 </SortableContext> </DndContext> <DndContext onDragEnd={onDragEnd} onDragStart={onDragStart}> <!-- child context 2 --> <SortableContext items={items2}> render items 2</SortableContext> </DndContext> </SortableContext> </DndContext>