Skip to content

Instantly share code, notes, and snippets.

@tobychung
Created July 19, 2019 04:11
Show Gist options
  • Save tobychung/d95843f319645a77bd165a8326e89957 to your computer and use it in GitHub Desktop.
Save tobychung/d95843f319645a77bd165a8326e89957 to your computer and use it in GitHub Desktop.
Config file for storybook
import { configure } from '@storybook/html';
import '../src/scss/main.scss';
function loadStories() {
const myDOM = document.createElement('div');
myDOM.className = 'bg';
myDOM.style.cssText = 'margin-top: 200px; display: flex; justify-content: center; align-items: center;';
require(`../stories/a.js`);
require(`../stories/b.js`);
require(`../stories/c.js`);
}
configure(loadStories, module);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment