import { SortableContainer, SortableElement, arrayMove } from 'react-sortable-hoc';
sortableList() {
const SortableItem = SortableElement(({ value }) =>
<li>{value}</li>);
const SortableList = SortableContainer(({ items }) => (
<ul>
{items.map((value, index) => (
<SortableItem key={`item-${value}`} index={index} value={value} />
))}
</ul>
));
return <SortableList items={this.state.items}
onSortEnd={({ oldIndex, newIndex }) =>
{ this.onSortEnd({ oldIndex, newIndex }); }} />;
}
<div className="sort-able eg-wrapper">
{this.sortableList()}
</div>