storybook/docs/snippets/web-components/csf-2-example-starter.js.mdx
2023-02-16 09:13:06 +08:00

16 lines
264 B
Plaintext

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