Reference
forwardRef
Wraps a component so it can receive a ref as the second render argument.
Signature
function forwardRef<P, T>(render: (props: P, ref: { current: T | null } | (value: T | null): void | null): ReactCompatNode): ForwardRefType<P>Reference
Wraps a component so it can receive a ref as the second render argument.
function forwardRef<P, T>(render: (props: P, ref: { current: T | null } | (value: T | null): void | null): ReactCompatNode): ForwardRefType<P>