React

useEffect

Definition

A React hook for performing side effects in function components — fetching data, setting up subscriptions, or manually updating the DOM. Runs after every render by default; use the dependency array to control when it runs.

Code Example

Jsx

Learn More

Related Terms