2019-06-24 00:39:54 +08:00

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);