diff --git a/storybook/config.js b/storybook/config.js
index 924eadf493a4579a27b11fc10147514ad77fd912..976b83af08c59a834082793cdd29df79a1dbe63e 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);