mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
30 lines
453 B
Plaintext
30 lines
453 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import Button from './button.component';
|
|
|
|
export const Primary = () => ({
|
|
component: Button,
|
|
props: {
|
|
label: 'Button',
|
|
background: '#ff0',
|
|
},
|
|
});
|
|
|
|
export const Secondary = () => ({
|
|
component: Button,
|
|
props: {
|
|
label: '😄👍😍💯',
|
|
background: '#ff0',
|
|
},
|
|
});
|
|
|
|
export const Tertiary = () => ({
|
|
component: Button,
|
|
props: {
|
|
label: '📚📕📈🤓',
|
|
background: '#ff0',
|
|
},
|
|
});
|
|
```
|