fix: Allow JSX.Element story (#8159)

fix: Allow JSX.Element story
This commit is contained in:
Norbert de Langen 2019-09-24 03:30:33 +02:00 committed by GitHub
commit f947b059ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
import { StoryFn, ClientStoryApi, Loadable } from '@storybook/addons';
export type StoryFnPreactReturnType = string | Node;
export type StoryFnPreactReturnType = string | Node | JSX.Element;
export interface ShowErrorArgs {
title: string;