From 019e687ccb21054b8feacdecaca93f7138a58edf Mon Sep 17 00:00:00 2001 From: Ricardo Ambrogi Date: Thu, 2 Jun 2016 08:51:11 -0300 Subject: [PATCH] Fixed missing comma in React ES2015 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4443936..aa87264 100644 --- a/README.md +++ b/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);