React Draggable Component
A simple component for making elements draggable.
Demo
stackblitz
Installation
$ npm install drag-react
# yarn add drag-react
Example
import { Draggable } from 'drag-react';
<Draggable>
<div>My element is draggable now</div>
</Draggable>
Props
name | type | default | description |
---|---|---|---|
children | any |
empty | Component or HTMLElement |
className | string |
'drag-react' |
class name |
style | Object |
{ position: 'fixed', left: '10px', top: '10px', zIndex: 99999 , cursor: 'move' } |
css style |
License
MIT