- React – forceUpdate on a functional component (re-render)Sometimes you need to force react to update a functional component. But, how to do this? Class components: We just need to update the current state: React has a function …
- React Hook – Clean Up useEffectLast article we learn about Asynchronous actions on useEffect and our correct usage (React Hook – Async funcion in useEffect). Today we will see how to use the clean up …
- React Hook – Async function in useEffectIf you already know the error message: “React Hook Warnings for async function in useEffect: useEffect function must return a cleanup function or nothing” Here is a little explanation of …