Merge pull request #12072 from storybookjs/12056-fix-csf-component-type

React: Fix CSF component typing
This commit is contained in:
Michael Shilman 2020-08-17 21:52:06 +08:00 committed by GitHub
commit 5898887714
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
import { Component, FunctionComponent } from 'react';
import { ComponentClass, FunctionComponent } from 'react';
import { Args as DefaultArgs, Annotations, BaseMeta, BaseStory } from '@storybook/addons';
import { StoryFnReactReturnType } from './types';
export { Args, ArgTypes, Parameters, StoryContext } from '@storybook/addons';
type ReactComponent = Component | FunctionComponent<any>;
type ReactComponent = ComponentClass<any> | FunctionComponent<any>;
type ReactReturnType = StoryFnReactReturnType;
/**