mirror of
https://github.com/nostalgic-css/NES.css.git
synced 2025-09-08 21:30:47 +02:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
import { storiesOf } from '@storybook/html';
|
|
import { withKnobs } from '@storybook/addon-knobs';
|
|
|
|
import Text from './text.template';
|
|
|
|
storiesOf('Text', module)
|
|
.addDecorator(withKnobs)
|
|
.add('Text', () => Text());
|