By freeCodeCamp.org -
2020-11-05
React is one of the most popular JavaScript libraries for building user interfaces. If you want to become a front-end developer or find a web development job, you would probably benefit from learning ...
By Medium -
2020-07-30
Problems we commonly face when using React is the case of wasted renders. To conquer these problems, we need sophisticated tools to enable us to knife through these problems to see why and how they…
By Smashing Magazine -
2020-11-19
In a React component, useState and useReducer can cause your component to re-render each time there is a call to the update functions. In this article, you will find out how to use the useRef() hook t ...
By DEV Community -
2021-02-02
With the Vue 3 Composition API, you can write functional components. What happens if we write them with JSX templates? Are they similar to React functional components?. Tagged with react, vue, javascr ...
By Medium -
2021-01-21
Code splitting in your React applications can drastically increase performance and overall user experience
By DEV Community -
2021-01-10
There comes a time when we have to worry about more than just making sure our applications work, but...