mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
18 lines
378 B
Plaintext
18 lines
378 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.ts | Button.stories.jsx | Button.stories.tsx
|
|
|
|
export const Primary = Template.bind({});
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Button',
|
|
};
|
|
Primary.parameters = {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'red', value: '#f00' },
|
|
{ name: 'green', value: '#0f0' },
|
|
{ name: 'blue', value: '#00f' },
|
|
],
|
|
},
|
|
};
|
|
``` |