We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 33a2a01 + de67582 commit f671557Copy full SHA for f671557
README.md
@@ -15,13 +15,21 @@ problems with handle placement and visibility.
15
You can pass options directly to the underlying `Draggable` instance by using the prop `draggableOpts`.
16
See the [demo](/test/TestLayout.jsx) for more on this.
17
18
+### Installation
19
+
20
+Using [npm](https://www.npmjs.com/):
21
22
+ $ npm install --save react-resizable
23
24
### Usage
25
26
```javascript
27
var Resizable = require('react-resizable').Resizable; // or,
28
var ResizableBox = require('react-resizable').ResizableBox;
29
30
+// Using ES6 transpiler
31
+import { Resizable, ResizableBox } from 'react-resizable';
32
33
...
34
render: function() {
35
return (
0 commit comments