mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
As per 49182c7144/types/react/index.d.ts (L531)
SFC type is deprecated.
`VFC` mean Void Functional Component, which is suitable here
9 lines
324 B
Plaintext
9 lines
324 B
Plaintext
```ts
|
|
// Button.stories.tsx
|
|
|
|
export const Primary: React.VFC<{}> = () => <Button background="#ff0" label="Button" />;
|
|
export const Secondary: React.VFC<{}> = () => <Button background="#ff0" label="😄👍😍💯" />;
|
|
export const Tertiary: React.VFC<{}> = () => <Button background="#ff0" label="📚📕📈🤓" />;
|
|
|
|
```
|