score:1

i ran into the same issue. came out with the following solution:

from the draggable docs 🚀,

<draggable /> components can be dragged around and dropped onto <droppable />s. 
a <draggable /> must always be contained within a <droppable />."

try wrapping your draggable components with droppable, like this

    <dragdropcontext ondragend={ondragend}>
        <droppable droppableid="some_id">
          {provided => (
            <div ref={provided.innerref} {...provided.droppableprops}>
              <draggable draggableid={props.id} index={props.index}>
                {(provided, snapshot) => (
                  <div {...provided.draggableprops} {...provided.draghandleprops} ref={provided.innerref}>
                    some code goes in here....
                  </div>
                )}
              </draggable>
            </div>
          )}
        </droppable>
      </dragdropcontext>      

Related Query

More Query from same tag