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.
1 parent 14bf4d5 commit 3508badCopy full SHA for 3508bad
README.md
@@ -55,6 +55,7 @@ Using the `group` option to drag elements from one list into another.
55
File: index.jsx
56
```js
57
import React from 'react';
58
+import ReactDOM from 'react-dom';
59
import Sortable1 from './sortable1';
60
import Sortable1 from './sortable2';
61
@@ -68,7 +69,7 @@ const SortableList = (props) => {
68
69
);
70
};
71
-React.render(<SortableList />, document.body);
72
+ReactDOM.render(<SortableList />, document.body);
73
```
74
75
File: sortable1.jsx
0 commit comments