Skip to content

Commit

Permalink
Merge be200a8 into cd2846c
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsJonQ committed May 5, 2018
2 parents cd2846c + be200a8 commit e5cf0b1
Show file tree
Hide file tree
Showing 8 changed files with 5,106 additions and 188 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.DS_Store
.storybook
stories
node_modules
coverage
src
2 changes: 2 additions & 0 deletions .storybook/addons.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import '@storybook/addon-actions/register';
import '@storybook/addon-links/register';
9 changes: 9 additions & 0 deletions .storybook/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { configure } from '@storybook/react';

// automatically import all files ending in *.stories.js
const req = require.context('../stories', true, /.stories.js$/);
function loadStories() {
req.keys().forEach(filename => req(filename));
}

configure(loadStories, module);
Loading

0 comments on commit e5cf0b1

Please sign in to comment.