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 b9fbc7e commit e516461Copy full SHA for e516461
examples/src/index.jsx
@@ -32,7 +32,7 @@ class App extends React.Component {
32
}
33
render() {
34
const simpleList = this.state.simpleList.map((val, key) => (
35
- <div key={key} data-id={val}>List Item {val}</div>
+ <li key={key} data-id={val}>List Item {val}</li>
36
));
37
const groupLeft = this.state.groupLeft.map((val, key) => (
38
<div key={key} data-id={val}>{val}</div>
@@ -48,6 +48,7 @@ class App extends React.Component {
48
<div className="row">
49
<div className="col-sm-12">
50
<Sortable
51
+ tag="ul"
52
className="block-list"
53
>
54
{simpleList}
0 commit comments