Skip to content

Instantly share code, notes, and snippets.

@igortatarenko
Forked from vernondegoede/config.js
Created October 10, 2018 16:08
Show Gist options
  • Select an option

  • Save igortatarenko/cd1da7f5265440d20e54b36c5e7d7b15 to your computer and use it in GitHub Desktop.

Select an option

Save igortatarenko/cd1da7f5265440d20e54b36c5e7d7b15 to your computer and use it in GitHub Desktop.
// File: .storybook/config.js
import { configure, addDecorator } from '@kadira/storybook';
import Theme from './../src/ui/theme';
import React from 'react';
import { ThemeProvider } from 'styled-components'
function loadStories() {
require('../stories');
}
addDecorator((story) => (
<ThemeProvider theme={Theme}>
{story()}
</ThemeProvider>
))
configure(loadStories, module);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment