React.ReactNode
React Componentがrenderingできるもの
code:ts
type ReactNode =
| ReactElement
| string
| number
| ReactFragment
| ReactPortal
| boolean
| null
| undefined;
React.ReactElement
https://github.com/microsoft/TypeScript/blob/aa44cd80049a8dec1fbd7afe8a92f617a3b3537e/tests/lib/react18/react18.d.ts#L231-
https://www.totaltypescript.com/jsx-element-vs-react-reactnode