storybook/docs/snippets/web-components/button-story.js.mdx
2021-06-18 17:34:13 +01:00

14 lines
219 B
Plaintext

```js
// demo-button.stories.js
import { html } from 'lit-html';
import './demo-button';
export default {
title: 'Components/Button',
};
export const Primary = () => html`<demo-button primary></demo-button>`;
```