mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
29 lines
454 B
Plaintext
29 lines
454 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export const Primary = () => ({
|
|
Component: Button,
|
|
props: {
|
|
background: "#ff0",
|
|
label: "Button",
|
|
},
|
|
});
|
|
|
|
export const Secondary = () => ({
|
|
Component: Button,
|
|
props: {
|
|
background: "#ff0",
|
|
label: "😄👍😍💯",
|
|
},
|
|
});
|
|
|
|
export const Tertiary = () => ({
|
|
Component: Button,
|
|
props: {
|
|
background: "#ff0",
|
|
label: "📚📕📈🤓",
|
|
},
|
|
});
|
|
|
|
```
|