ForwardRefFn
An interface that a function passed into forwardRef
has to implement.
interface ForwardRefFn {
(): any
}
Methods
ParametersThere are no parameters. Returns
|
Usage notes
Example
const ref = forwardRef(() => Lock);