Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

335
Vistas
Getting TypeError when I'm passing a Ref from a function component to other function component using forwardRef in react js,

I want to pass the ref from the App to Foo, App and Foo are function components, so I'm using forwardRef() to warp the Foo, but I get the error warning TypeError: Cannot add property current, object is not extensible. Below id my code, we do I need to change?

import './App.css';
import React, { useState, Component, useEffect, createRef, useRef, forwardRef } from 'react'
import ReactDOM from 'react-dom'

const Foo=forwardRef((inputRef)=> {
  const onClick = () => {
    inputRef.current.focus()
  }
    return (
      <div>
        <input type="text" ref={ inputRef }></input>
        <button onClick={ onClick }>Focus</button>
      </div>
    ) 
})
function App() {
  const inputRef = createRef()
  const clicked = () => {
    inputRef.current.focus()
  }
  return (
    <div>
      <Foo ref={inputRef} />
      <button onClick={ clicked }>Click Foo</button>
    </div>
  )
  
}
export default App;
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Please define ref at start function

const inputRef = useRef(null); 
about 4 years ago · Juan Pablo Isaza Denunciar

0

Ref Forwarding receives two parameters props and ref.

React.forwardRef((props, ref) =>{
    return(
        <button ref={ref}>{props.children}</button>
    )
};

Here is your edited code I've added type for ref which is HTMLInputElement.

type RefType = HTMLInputElement | null;
interface PropsType {}

const Foo = forwardRef<RefType, PropsType>((props, ref) => {
  const onClick = () => {
   if (ref && "current" in ref) {
    ref.current?.focus();
   }
};
  return (
     <div>
       <input type="text" ref={ref}></input>
       <button onClick={onClick}>Focus</button>
     </div>
 );
});

 function App() {
  const inputRef = createRef<HTMLInputElement>();
  const clicked = () => {
  inputRef.current?.focus();
 };
  return (
     <div>
     <Foo ref={inputRef} />
     <button onClick={clicked}>Click Foo</button>
    </div>
   );
  }
 export default App;
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda