import { JSX } from 'react'; export type RenderProps = { (props: T): JSX.Element; }; export const isRenderProps = ( children: JSX.Element | RenderProps ): children is RenderProps => typeof children === 'function';