mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
10 lines
199 B
Plaintext
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>`,
|
|
};
|
|
```
|