storybook/docs/snippets/web-components/button-story-rename-story.js.mdx

12 lines
209 B
Plaintext

```js
// demo-button.stories.js
import { html } from 'lit-html';
import './demo-button';
export const Primary = () => html`<demo-button primary></demo-button>`;
Primary.storyName = 'I am the primary';
```