mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 05:51:07 +08:00
26 lines
588 B
Plaintext
26 lines
588 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import { html } from 'lit';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: 'custom-button',
|
|
//👇 Creates specific parameters for the story
|
|
parameters: {
|
|
myAddon: {
|
|
data: 'This data is passed to the addon',
|
|
},
|
|
},
|
|
};
|
|
|
|
/*
|
|
*👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
* See https://storybook.js.org/docs/7.0/web-components/api/csf
|
|
* to learn how to use render functions.
|
|
*/
|
|
export const Basic = {
|
|
render: () => html`<custom-button label="Hello"></custom-button>`,
|
|
};
|
|
```
|