0 votes
in ReactJS by
Is ref argument available for all functions or class components in ReactJS?

1 Answer

0 votes
by

Regular function or class components don’t receive the ref argument, and ref is not available in props either. The second ref argument only exists when you define a component with React.forwardRef call.

...