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