Last updated: Oct 29, 2021

Main Concepts

There's never been a better time to learn React. You'll develop a strong understanding of React's most essential concepts: JSX, class and function components, props, state, lifecycle methods, and hooks.
Props in React
JavaScript plays an important role in designing the UI of a webpage. While designing UI using React, it is important to have a solid understanding of Props in React. This article describes Props in React.
Class Components in React EASY
Components in React are of two types. Class components in React are one such type of component and are discussed in this article.
State and Lifecycle
In this article, we will be looking at how the working of State and Lifecycle takes place in react.
Handling Events in React
Events are one of the most important parts of react.js. In this article, we will be discussing handling events in react.
React Components Lifecycle
A component is one of the core building blocks in React. In this blog, we will be discussing the React components lifecycle.
Author Ranjul
0 upvotes
Using Chart.js with React MEDIUM
React Chart.js simplifies chart and graph creation in React, offering a user-friendly JavaScript library.
React Toastify MEDIUM
React-Toastify emerges as a remarkable library for orchestrating sleek notifications within React applications, fostering enhanced user engagement.
Conditional Rendering in React
This blog describes the concept of conditional rendering in React and ways to achieve it.
REACT Lists and Keys
This blog covers the concept of React lists and keys, the need for the React lists and keys, and how to generate unique keys for lists.
Lifting The State Up in ReactJS
In React, whenever a state needs to be shared with siblings, we lift the state up to the closest common ancestor. This is called "Lifting The State Up."
Author Ranjul
0 upvotes
Difference between Composition and Inheritance in React
This blog covers the concept of composition and inheritance in React and the difference between composition and inheritance in React.
Map() Function in ReactJS MEDIUM
In ReactJS, Map() is a method used to iterate over an array and transform each element based on the logic you provide. The map method runs a function for each item in the array.
For Loop in React JS EASY
This article extensively covers the concept of the loop in ReactJS
Use of render() in React js
This article will deeply explain render() in react js and why we need to use the render(). 
useState() in React Js EASY
In this blog, we will learn about the useState() in React Js and when and how we can use the useState() method.
Dropdown in react js MEDIUM
In React.js, a dropdown is typically created using an HTML <select> element with multiple <option> elements inside it.
Features of React js EASY
What are the features of ReactJS ? 1. JavaScript XML or JSX 2. Virtual DOM 3. One-way data binding 4. Component-Based Architecture