React Hooks Quiz
useState, useEffect, useContext, useMemo, useCallback, and custom hooks.
Question 1 of 7
Question 1 of 7react
What does the dependency array of useEffect control?
react
useEffect(() => {
fetchData(id);
}, [id]); // <-- this arrayuseState, useEffect, useContext, useMemo, useCallback, and custom hooks.
useEffect(() => {
fetchData(id);
}, [id]); // <-- this array