1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix: Fix StrictReactNode not accepting multiple children

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-05-10 10:31:14 -04:00
parent 9ab8cf7bef
commit 2ca77ecfe8

View File

@ -18,9 +18,11 @@ export type StrictReactFragment =
}; };
export type StrictReactNode = export type StrictReactNode =
| React.ReactChild | React.ReactElement
| React.ReactText
| StrictReactFragment | StrictReactFragment
| React.ReactPortal | React.ReactPortal
| Iterable<StrictReactNode>
| boolean | boolean
| null | null
| undefined; | undefined;