From 9f0dc10ee3f53287bf68e0fb5592c779200374c5 Mon Sep 17 00:00:00 2001 From: Andrew Russell Date: Mon, 23 Jan 2017 19:03:46 -0500 Subject: [PATCH] Update index.js nit: fixed indentation issues. --- src/.stories/index.js | 50 +++++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/.stories/index.js b/src/.stories/index.js index e03bccfbd..278116ea2 100644 --- a/src/.stories/index.js +++ b/src/.stories/index.js @@ -27,7 +27,7 @@ const Item = SortableElement((props) => {
- {props.shouldUseDragHandle && } + {props.shouldUseDragHandle && }
Item {props.value}
@@ -36,15 +36,15 @@ const Item = SortableElement((props) => { }); const Category = SortableElement((props) => { - return ( -
-
- - Category {props.value} -
+ return ( +
+
+ + Category {props.value} +
-
- ) +
+ ) }); class ListWrapper extends Component { @@ -252,17 +252,17 @@ const ShrinkingSortableList = SortableContainer(({className, isSorting, items, i }); const NestedSortableList = SortableContainer(({className, items, isSorting, sortableHandlers}) => { - return ( -
- {items.map((value, index) => - - )} -
- ); + return ( +
+ {items.map((value, index) => + + )} +
+ ); }); storiesOf('Basic Configuration', module) @@ -310,11 +310,11 @@ storiesOf('Basic Configuration', module) ); }) .add('Nested Lists', () => { - return ( -
- -
- ); + return ( +
+ +
+ ); }) storiesOf('Advanced', module)