Did you already try the `useEffect` hook, maybe to fetch data on the first mount of your component? How did it work out for you?
Continue reading Why is my useEffect Hook executed in an endless loop?Tag: Hooks
How to Load Data from a REST API with React Hooks
With this week’s release of React 16.8, Hooks were finally released into the wild. They allow us doing a lot of stuff that wasn’t possible until now. For example, loading data into the state of a functional component. But let’s have a closer look.
Continue reading How to Load Data from a REST API with React Hooks