mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
27 lines
410 B
Plaintext
27 lines
410 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: '📚📕📈🤓',
|
|
},
|
|
});
|
|
``` |