Sortable component for React. Demo here.
Thanks to @james-ecargo for implementing the React 16 support.
React.render(
<ReactReorderable>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</ReactReorderable>,
document.getElementById('container')
);
handle
- a selector, which provides the handle elementmode
- grid
or list
, list
will work in the general case but grid
is eventually smarter for grid layoutonDragStart
onDrag
onDrop
onChange
MIT