storybook/docs/snippets/web-components/button-story-rename-story.js.mdx
2021-11-09 01:41:54 +00:00

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';
```