Skip to content

Instantly share code, notes, and snippets.

@mikkokaar
mikkokaar / DragDrop.js
Last active October 8, 2022 01:24
react-beautiful-dnd wrapper to add payloads and callback support on draggables and droppables, see https://github.com/atlassian/react-beautiful-dnd/issues/498
import React from "react"
import { DragDropContext as DragDropContext_, Droppable as Droppable_, Draggable as Draggable_ } from "react-beautiful-dnd"
// Maps
const draggableMap = {}
const droppableMap = {}