mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
Merge pull request #12072 from storybookjs/12056-fix-csf-component-type
React: Fix CSF component typing
This commit is contained in:
commit
5898887714
@ -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;
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user