Browse Source

Merge pull request #862 from KadoBOT/patch-1

Fixed missing comma in React ES2015
pull/866/merge
Lebedev Konstantin 9 years ago committed by GitHub
parent
commit
d7680eb688
  1. 2
      README.md

2
README.md

@ -467,7 +467,7 @@ export class SortableExampleEsnext extends React.Component {
// check if backing instance not null
if (componentBackingInstance) {
let options = {
draggable: "div" // Specifies which items inside the element should be sortable
draggable: "div", // Specifies which items inside the element should be sortable
group: "shared"
};
Sortable.create(componentBackingInstance, options);

Loading…
Cancel
Save