We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f21817d commit bdecec4Copy full SHA for bdecec4
apps/chart-docsite/src/DocsComponents/FluentDocsContainer.tsx
@@ -11,7 +11,10 @@ interface FluentDocsContainerProps {
11
/**
12
* A container that wraps storybook's native docs container to add extra components to the docs experience
13
*/
14
-export const FluentDocsContainer: React.FC<FluentDocsContainerProps> = ({ children, context }) => {
+export const FluentDocsContainer: React.FC<React.PropsWithChildren<FluentDocsContainerProps>> = ({
15
+ children,
16
+ context,
17
+}) => {
18
return (
19
<>
20
{/** TODO add table of contents */}
0 commit comments