I am trying to replicate the React Beautiful DnD example shown here: https://react-beautiful-dnd.netlify.app/?path=/story/board--large-data-set
There are about 500 draggables on that page, but there is relatively little lag when picking up the draggable and moving it around.
My attempt to copy this example can be found here: https://codesandbox.io/s/react-beautiful-dnd-stress-test-v50jl. The onDragEnd is not implemented yet, as right now I'm only concerned about the pickup and move lag.
When picking up an item in my version, it takes approximately 1 full second for the draggable to start moving. The movement of the draggable is also very jittery as it's moved around between droppables.
I have tried searching for the source code for the official example, but can't find it. I would like to know what optimizations I could be making in my code to have it run as smoothly.