## Problem Currently, the prop `dragEnabled` enables dragging on all items globally. There is no way to allow dragging on some items and not on some others. ## Proposal `dragEnabled` currently accepts a `boolean`, but it could also accept a `Function`such as: ``` dragEnabled: (item) => item.movable ```