1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-07-31 03:30:15 +02:00
Files
nes.css/story/select/select.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
229 B
JavaScript

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