Merge pull request #19437 from mihkeleidast/docs-container-children

Addon-docs: Define children for DocsContainer
This commit is contained in:
Michael Shilman 2022-10-18 22:27:16 +08:00 committed by GitHub
commit 90c58e76f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
import React, { FunctionComponent, useEffect } from 'react';
import React, { FunctionComponent, useEffect, ReactNode } from 'react';
import global from 'global';
import type { ThemeVars } from '@storybook/theming';
import { ThemeProvider, ensure as ensureTheme } from '@storybook/theming';
@ -13,6 +13,7 @@ const { document, window: globalWindow } = global;
export interface DocsContainerProps<TFramework extends AnyFramework = AnyFramework> {
context: DocsContextProps<TFramework>;
theme?: ThemeVars;
children?: ReactNode;
}
export const DocsContainer: FunctionComponent<DocsContainerProps> = ({