interface ForwardRefRenderFunction<T, P> {
    defaultProps?: undefined;
    displayName?: string;
    propTypes?: undefined;
    (props: PropsWithChildren<P>, ref: null | ((instance: null | T) => void) | MutableRefObject<null | T>): null | ReactElement<any, string | JSXElementConstructor<any>>;
}

Type Parameters

  • T
  • P = {}

Hierarchy (view full)

Properties

defaultProps?: undefined

defaultProps are not supported on render functions

displayName?: string
propTypes?: undefined

propTypes are not supported on render functions