1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-31 17:51:46 +02:00
Files
nes.css/story/dialogs/dialogs.stories.js
Kaylum Lally 2e06165882 refactor(storybook): storybook enhancement and cleanup
refactored the storybook codebase for all components

re #381
2019-12-14 15:21:15 +00:00

9 lines
232 B
JavaScript

import { storiesOf } from '@storybook/html';
import { withKnobs } from '@storybook/addon-knobs';
import Dialogs from './dialogs.template';
storiesOf('Dialogs', module)
.addDecorator(withKnobs)
.add('Dialog', () => Dialogs());