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