React is, arguably, the easiest UI library out there. But this easiness comes at a cost, which is performance. In this article, I will list some ways to improve the performance of your React app drastically.
read more “Simple Ways To Speed Up Your React App”Tag: performance
React.useMemo and when you should use it
As your application scales, performance issues become more and more evident. While React is very well optimized and fast out-of-box, it is important to know the instruments it provides to make your code even faster. One of such instruments is React.useMemo
hook and its sidekick, React.useCallback
.