mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +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
173 B
Plaintext
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>;
|
|
```
|