storybook/docs/snippets/web-components/csf-3-example-render.ts.mdx
2023-01-05 14:53:03 +00:00

10 lines
199 B
Plaintext

```js
// CSF 3
// Other imports and story implementation
export const Default: Story = {
render: (args) => html`<custom-button label="Hello" @click=${action('clicked')}></custom-button>`,
};
```