Imagine you're working on a website, and you want to update something on the page, like changing some text or adding a new element. Your web page is...
React caches the static data that are imported. This is an advanced feature that made me grind for a while. I will explain from my understanding how...
I am working on search feature of a sidebar menu of a dashboard. The sidebar was okay (till now). I was assigned a task to add a search feature to the...
Concurrency means executing multiple tasks at the same time but not necessarily simultaneously. In the context of React.js, concurrency refers to...
I’ve found a really nice blog on React Portals by Dave Biiter. The article is clear and concise on describing the React feature. I am referring to...
React enforces using pure components. To ensure this React has ‘StrictMode’ on in the development mode/environment. So that any impure component can...