mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:01:05 +08:00
9 lines
325 B
Plaintext
9 lines
325 B
Plaintext
```ts
|
|
// Button.stories.tsx
|
|
|
|
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="📚📕📈🤓" />;
|
|
|
|
```
|