storybook/docs/snippets/web-components/csf-2-example-starter.js.mdx
2022-12-05 12:37:36 -07:00

16 lines
293 B
Plaintext

```js
// CSF 2
import { html } from 'lit-html';
import './demo-button';
export default {
title: 'components/demo-button',
component: 'demo-button',
};
export const Primary = ({ primary }) => html`<demo-button ?primary=${primary}></demo-button>`;
Primary.args = {
primary: true,
};
```