**This package has not been tested on mobile browsers or React Native. SORRY!**
npm install react-list-drag-and-dropThis package has not been tested on mobile browsers or React Native. SORRY!

----
!React List Drag and Drop Example
!React List Drag and Drop Example
```
npm install --save react-list-drag-and-drop
You must have an Array of items to render in your list.
Instead of rendering it inside a
you render it inside a component using a render prop.`javascript
import RLDD from 'react-list-drag-and-drop/lib/RLDD';
``jsx
items={items}
itemRenderer={(item) => {
return (
{item.title}
);
}}
onChange={this.handleRLDDChange}
/>
`
Then you need to handle the onChange callback and call setState with the new list. Like this:
`javascript
private handleRLDDChange(newItems) {
this.setState({ items: newItems });
}
`Each item must be of type
Object and have an id property of type number`. You can play around with the examples

