Skip to content

Commit 52dcc43

Browse files
authored
fix: avoid relying on implicit children prop
1 parent efd262c commit 52dcc43

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/types/react.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ComponentType } from 'react'
1+
import { ComponentType, ReactNode } from 'react'
22

33
import {
44
RenderHookOptions as BaseRenderHookOptions,
@@ -8,7 +8,9 @@ import {
88
CleanupCallback
99
} from '.'
1010

11-
export type WrapperComponent<TProps> = ComponentType<TProps>
11+
export type WrapperComponent<TProps> = ComponentType<TProps & {
12+
children?: ReactNode
13+
}>
1214

1315
export type RendererOptions<TProps> = {
1416
wrapper?: WrapperComponent<TProps>

0 commit comments

Comments
 (0)