mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:32:02 +08:00
8 lines
325 B
Plaintext
8 lines
325 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
export const Primary: React.SFC<{}> = () => <Button background="#ff0" label="Button" />;
|
|
export const Secondary : React.SFC<{}> = () => <Button background="#ff0" label=”😄👍😍💯" />;
|
|
export const Tertiary: React.SFC<{}> = () => <Button background="#ff0" label="📚📕📈🤓" />;
|
|
|
|
``` |