about summary refs log tree commit diff
path: root/storybook/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'storybook/config.js')
-rw-r--r--storybook/config.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/storybook/config.js b/storybook/config.js
index 924eadf49..976b83af0 100644
--- a/storybook/config.js
+++ b/storybook/config.js
@@ -14,11 +14,10 @@ window.storiesOf = storiesOf;
 window.action    = action;
 window.React     = React;
 
+let req = require.context('./stories/', true, /.story.jsx$/);
+
 function loadStories () {
-  require('./stories/loading_indicator.story.jsx');
-  require('./stories/button.story.jsx');
-  require('./stories/character_counter.story.jsx');
-  require('./stories/autosuggest_textarea.story.jsx');
+  req.keys().forEach((filename) => req(filename))
 }
 
 configure(loadStories, module);