mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
7 lines
276 B
Plaintext
7 lines
276 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="📚📕📈🤓" />;
|
|
``` |