about summary refs log tree commit diff
path: root/storybook
diff options
context:
space:
mode:
Diffstat (limited to 'storybook')
-rw-r--r--storybook/config.js1
-rw-r--r--storybook/stories/tabs_bar.story.jsx6
2 files changed, 7 insertions, 0 deletions
diff --git a/storybook/config.js b/storybook/config.js
index 98dde07de..d9fde833c 100644
--- a/storybook/config.js
+++ b/storybook/config.js
@@ -11,6 +11,7 @@ window.React     = React;
 function loadStories () {
   require('./stories/loading_indicator.story.jsx');
   require('./stories/button.story.jsx');
+  require('./stories/tabs_bar.story.jsx');
 }
 
 configure(loadStories, module);
diff --git a/storybook/stories/tabs_bar.story.jsx b/storybook/stories/tabs_bar.story.jsx
new file mode 100644
index 000000000..daaedca5a
--- /dev/null
+++ b/storybook/stories/tabs_bar.story.jsx
@@ -0,0 +1,6 @@
+import TabsBar from '../../app/assets/javascripts/components/features/ui/components/tabs_bar.jsx'
+
+storiesOf('TabsBar', module)
+  .add('default state', () => (
+    <TabsBar />
+  ));