useRef()
is usually used to access DOM elements for use in useEffect()
or event handlers.
const Input = () => {
// null – initial value
const inputEl = useRef(null);
const onButtonClick = () => {
// `current` points to the mounted `input` element `input`
inputEl.current.focus();
};
return (
<>
<input ref={inputEl} type="text" />
<button onClick={onButtonClick}>Focus</button>
</>
);
}
The value inside inputEl
appears immediately after the component is mounted, but before the hooks are called. To do this, don't forget to set the ref
attribute for the desired element.
Another way to use useRef()
is to store any data between component calls. This hook returns a regular object with the current
property inside. The only difference between this object and the manually created { current: ... }
, is that the hook returns the same object every time the component is called. In terms of its behavior, useRef()
is similar to using a regular property inside a class component (this.someproperty
).
Below is an example of how you can save the previous state using useRef()
:
See the Pen use_ref by Hexlet (@hexlet) on CodePen.
The Hexlet support team or other students will answer you.
A professional subscription will give you full access to all Hexlet courses, projects and lifetime access to the theory of lessons learned. You can cancel your subscription at any time.
Programming courses for beginners and experienced developers. Start training for free
Our graduates work in companies:
From a novice to a developer. Get a job or your money back!
Sign up or sign in
Ask questions if you want to discuss a theory or an exercise. Hexlet Support Team and experienced community members can help find answers and solve a problem.