src/components/DragHandle.js
22f488a7
 import React from 'react';
 import { SortableHandle } from 'react-sortable-hoc';
 
 const DragHandle = SortableHandle(() => <span style={{ cursor: 'pointer' }}>⬍︎</span>);
 
 export default DragHandle;