storybook/docs/snippets/react/button-story-with-emojis.ts.mdx
Sebastian Andil 151fb57e84 Update deprecated type
As per 49182c7144/types/react/index.d.ts (L531) SFC type is deprecated.

`VFC` mean Void Functional Component, which is suitable here
2020-11-25 22:04:05 +01:00

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="📚📕📈🤓" />;
```