mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
14 lines
455 B
Plaintext
14 lines
455 B
Plaintext
```ts
|
|
// demo-button.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './demo-button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
}
|
|
export const Primary = () => html`<demo-button .background="#ff0" .label="Button"></demo-button>`;
|
|
export const Secondary = () => html`<demo-button .background="#ff0" .label="😄👍😍💯"></demo-button>`;
|
|
export const Tertiary = () => html`<demo-button .background="#ff0" .label="📚📕📈🤓"></demo-button>`;
|
|
``` |