We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efd262c commit 52dcc43Copy full SHA for 52dcc43
src/types/react.ts
@@ -1,4 +1,4 @@
1
-import { ComponentType } from 'react'
+import { ComponentType, ReactNode } from 'react'
2
3
import {
4
RenderHookOptions as BaseRenderHookOptions,
@@ -8,7 +8,9 @@ import {
8
CleanupCallback
9
} from '.'
10
11
-export type WrapperComponent<TProps> = ComponentType<TProps>
+export type WrapperComponent<TProps> = ComponentType<TProps & {
12
+ children?: ReactNode
13
+}>
14
15
export type RendererOptions<TProps> = {
16
wrapper?: WrapperComponent<TProps>
0 commit comments