mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:11:07 +08:00
15 lines
326 B
JavaScript
15 lines
326 B
JavaScript
import { linkTo } from '@storybook/addon-links';
|
|
import { document } from 'global';
|
|
|
|
import '../storybook-welcome-to-polymer.html';
|
|
|
|
export default {
|
|
title: 'Welcome',
|
|
};
|
|
|
|
export const Welcome = () => {
|
|
const el = document.createElement('storybook-welcome-to-polymer');
|
|
el.goToButton = linkTo('Button');
|
|
return el;
|
|
};
|