React is a JavaScript library for building user interfaces. It is maintained by Facebook and a community of individual developers and companies and can be used as a base in the development of single-page or mobile applications
React Context API was mainly introduced to solve one of the major problems that React developers like us were facing…
Some ReactJS Bad Practices include- 1. Using Index as the key in the map function 2. Polluting Render method by…
JSX stands for JavaScript Syntax Extension. It is a syntax for writing JavaScript and HTML together separated by curly braces.
Props in React are the read-only properties that are passed between two components mostly from the parent component to the…
useEffect hook is one of the most used hooks in React and it specializes in performing side effects in Functional…
useState hook in React JS is a Hook that lets us add React state to function components”. It simply means…
Hooks are an addition to the Functional Components through which we can work with states and other React features without…
Virtual DOM is just a virtual copy of the actual object that the DOM has created for a specific node…
Functional Components are JavaScript functions that are usually created with the help of arrow functions...