mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
9 lines
278 B
Plaintext
9 lines
278 B
Plaintext
```ts
|
|
// Button.stories.js
|
|
|
|
export const Primary = () => <Button background="#ff0" label="Button" />;
|
|
export const Secondary = () => <Button background="#ff0" label="😄👍😍💯" />;
|
|
export const Tertiary = () => <Button background="#ff0" label="📚📕📈🤓" />;
|
|
|
|
```
|