Skip to content

Instantly share code, notes, and snippets.

@serhii-havrylenko
Created October 28, 2018 13:54
Show Gist options
  • Save serhii-havrylenko/92fde863e9d8d529b972994815c08800 to your computer and use it in GitHub Desktop.
Save serhii-havrylenko/92fde863e9d8d529b972994815c08800 to your computer and use it in GitHub Desktop.
import { configure, addDecorator } from '@storybook/react';
import { withKnobs } from '@storybook/addon-knobs';
const req = require.context('../packages', true, /.story.tsx?$/);
function loadStories() {
addDecorator(withKnobs);
req.keys().forEach((filename) => req(filename));
}
configure(loadStories, module);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment