Category: React Js
-
Must-Have VSCode Extensions for React Developers
Last Modfied on
in React JsAs a React developer, finding the right tools to enhance my coding experience is crucial. That’s why I’ve compiled a list of must-have VSCode extensions that have greatly improved my workflow and productivity. From code navigation to debugging and testing, these extensions have proven to be invaluable. By leveraging these must-have VSCode extensions for React…
-
How to Stop useEffect From Running on The First Render?
Last Modfied on
in React JsIn certain situations, you want to skip the first render of the useEffect hook. Currently, we don’t have any mechanism built or hook defined by React Team which does the job for us. How do we use useEffect? Actually, In React, the useEffect hook runs after every render cycle of the component. Not aware of that?? So here’s the catch.…