DEV Community

Discussion on: 5 React Custom Hooks You Should Start Using (Explained)

Collapse
 
dastasoft profile image
dastasoft

Great article, thanks for posting!

For the useFetch hook I would recommend using a useReducer because the state is close related in each action and instead of having flags for the loading part, doing a state machine, check this article about it for me was a game changer: kentcdodds.com/blog/stop-using-isl...