DEV Community

Discussion on: Fetching data with React hooks and Axios

Collapse
 
fishme profile image
App Evangelist • Edited

your last example can't work.
const [loading, setLoading] = useState(false);
otherwise the loading state is always false.

have to be
const [loading, setLoading] = useState(true);

Collapse
 
darkmavis1980 profile image
Alessio Michelini

You are right, I probably copied over from an example to another, thanks for that