mirror of
https://github.com/nostalgic-css/NES.css.git
synced 2025-09-02 02:22:37 +02:00
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
import { storiesOf } from '@storybook/html';
|
|
import { withKnobs } from '@storybook/addon-knobs';
|
|
|
|
import Table from './table.template';
|
|
|
|
storiesOf('Tables', module)
|
|
.addDecorator(withKnobs)
|
|
.add('Table', () => Table());
|