Skip to content

Commit 75b260c

Browse files
committed
Fix types
1 parent 5890086 commit 75b260c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

types/test.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,11 @@ export function wrappedRender(
128128
ui: React.ReactNode,
129129
options?: pure.RenderOptions,
130130
) {
131-
const Wrapper = ({children}: {children: React.ReactNode}): JSX.Element => {
131+
const Wrapper = ({
132+
children,
133+
}: {
134+
children: React.ReactNode
135+
}): React.JSX.Element => {
132136
return <div>{children}</div>
133137
}
134138

0 commit comments

Comments
 (0)