1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-09-01 02:01:56 +02:00
Files
nes.css/story/textarea/textarea.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
239 B
JavaScript

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