mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
29 lines
448 B
Plaintext
29 lines
448 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",
|
|
},
|
|
});
|
|
``` |