mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-28 05:10:17 +08:00
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
import { storiesOf } from '@storybook/html';
|
|
import { withLinks } from '@storybook/addon-links';
|
|
|
|
import './welcome.css';
|
|
import welcome from './welcome.html';
|
|
|
|
storiesOf('Welcome', module)
|
|
.addDecorator(withLinks)
|
|
.add('Welcome', () => welcome);
|