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