storybook/docs/snippets/react/button-story.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
173 B
Plaintext

```ts
// Button.stories.tsx
import React from 'react';
import { Button } from './Button';
export const Primary: React.VFC<{}> = () => <Button primary>Button</Button>;
```