mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
15 lines
248 B
Plaintext
15 lines
248 B
Plaintext
```js
|
|
// demo-button.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './demo-button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
};
|
|
|
|
export const Primary = () => html`<demo-button primary></demo-button>`;
|
|
|
|
Primary.storyName = 'I am the primary';
|
|
``` |