Avoiding unexpected calls from useEffect on re-renders with useCallback and useRef approaches
passing callbacks from one component down to another on props is a cause of unexpected multiple calls on re-renders

Search for a command to run...
Series
Small posts to focus on specific stuff
passing callbacks from one component down to another on props is a cause of unexpected multiple calls on re-renders

Today will talk about how to handle complex translations with HTML elements in the middle with NextJS Intl . Prerequisites Would assume you have heard already about NextJS Intl or a similar library. If not, take a look at the link added previously. ...

Array API during the latest years is becoming more and more powerful, there are a lot of useful functions that we can rely on every day, but one that has many use cases when transforming arrays into other types: objects, strings, numbers and you cont...

Lazy loading is an approach to load incrementally parts 🚀 of your app, these could be a route component that is not used often or even a component that depends on heavy dependencies, we'll focus on these 2 use cases. FYI: there is part of this API...
