DEV Community

Cover image for Find React Areas Of Exploration
Emon Ahmed
Emon Ahmed

Posted on • Updated on

Find React Areas Of Exploration

Hello Everyone, Today We Will Discuss About SOME React Areas Of Exploration. We Have a Perfect Name For This BLOG, Which is called, Free Fire React Areas Of Exploration. Sound Cools. Let's Start,

React Component lifecycle

Image description

Each component in React has a lifecycle which you can monitor and manipulate during its three main phases. Mounting, Updating, and Unmount. This is referred to as a component lifecycle. This method is a built-in method in React.

Custom hook

Image description

Custom Hooks offer the flexibility of sharing logic that wasn't possible in React components before.

Higher order component

Image description

Higher order Component is an advanced technique in React for reusing component logic. And It is not part of the React API.

Features of React

Image description

The Major Features of ReactJs is a virtual DOM. React uses server-side rendering. And ReactJS follows unidirectional data flow or data binding.

Limitations of React

Image description

The Limitations of React are React is just a library, not a full-blown framework. Its library is very large and takes time to understand. And It uses inline templating and JSX.

Why can’t browsers read JSX

Image description

Browsers can Only Read JavaScript Objects BUT JSX is not a Regular JavaScript Object. We Have To Transform JSX with Babel For Pass in The Browser.

Top comments (0)