doodle-draggable
v0.1.6
Published
## Introduction A react hook of dragging specified element
Downloads
3
Readme
draggable-react
Introduction
A react hook of dragging specified element
Install
Install draggable-react by using
npm i doodle-draggable
or
yarn add doodle-draggable
Usage
import useDraggable from 'doodle-draggable'
....
const {target} = useDraggable()
return (
<>
...
<div ref= {target} className='specified'>
</div>
...
<>
)