mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
10 lines
168 B
Plaintext
10 lines
168 B
Plaintext
```js
|
|
// demo-button.stories.js
|
|
|
|
import { html } from 'lit-html';
|
|
|
|
import './demo-button';
|
|
|
|
export const Primary = () => html`<demo-button primary></demo-button>`;
|
|
```
|