mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
13 lines
207 B
Plaintext
13 lines
207 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>`;
|
|
``` |