mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
43 lines
1004 B
JavaScript
43 lines
1004 B
JavaScript
import { html } from 'lit-html';
|
|
import { action } from '@storybook/addon-actions';
|
|
import { linkTo } from '@storybook/addon-links';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
argTypes: {
|
|
children: { control: 'text' },
|
|
},
|
|
};
|
|
|
|
const ButtonStory = (args) => html`
|
|
<button @click=${action('clicked')}>
|
|
Hello Button
|
|
</button>
|
|
`;
|
|
|
|
export const Text = ButtonStory.bind({});
|
|
Text.args = {
|
|
children: 'Button',
|
|
onClick: action('onClick'),
|
|
};
|
|
|
|
export const Emoji = ButtonStory.bind({});
|
|
Emoji.args = {
|
|
children: '😀 😎 👍 💯',
|
|
};
|
|
|
|
export const TextWithAction = () => html`
|
|
<button @click=${() => action('This was clicked')()}>
|
|
Trigger Action
|
|
</button>
|
|
`;
|
|
|
|
TextWithAction.storyName = 'With an action';
|
|
TextWithAction.parameters = { notes: 'My notes on a button with emojis' };
|
|
|
|
export const ButtonWithLinkToAnotherStory = () => html`<button @click=${linkTo('Welcome')}>
|
|
Go to Welcome Story
|
|
</button>`;
|
|
|
|
ButtonWithLinkToAnotherStory.storyName = 'button with link to another story';
|