ReactJS

Rendering Elements in ReactJS

Hello ReactJS Developers,

Today we will learn about Rendering Elements in ReactJS.

Before learning about elements in ReactJS, learn the Basics of ReactJS.

Elements in ReactJS

The smallest building blocks of React applications are Elements. Elements are what you want to show or see on the screen.

Example of Element in ReactJS

const helloElement = <h1>Hello, MageComp</h1>;

Rendering an Element into the DOM

<div id=“root”></div>

We call this “root” DOM node because React DOM manages everything inside it.

A React application usually has a single root DOM node. However, while integrating React into an existing app, you can add as many separate root DOM nodes as needed.

For rendering elements in React, you need to pass the DOM element to ReactDOM.createRoot(), then pass the React element to the root.render().

const rootDOM = reactDOM.createRoot(document.getElementById(‘root));
Const helloElement = <h1>Hello, MageComp</h1>;
rootDOM.render(helloElement);

Output:

If you run this from your project, it displays “Hello, MageComp” on the page.

Updating the Rendered Element

React elements are fixed. This means once an element is created, its children or attributes can’t be changed. An element is like a single frame in a movie: it represents the UI at a particular time.

Hence, the only way to update the UI is to create a new element, and pass it to root.render().

Const rootDOM = ReactDOM.createRoot(document.getElementById(‘root));

function callMe()
{
    const helloElement = (
       <div>
           <h1>Hello, MageComp</h1>
           <h2>The Time is {new Date().toLocaleTimeString()}.</h2>
       </div>
    );
    rootDOM.render(helloElement);
}
setInterval(callMe, 1000);

It calls rootDOM.render every second from a setInterval() callback.

React Only Updates What’s Necessary

React DOM compares the element and its children to the previous one and only applies the DOM updates necessary to bring the DOM to the desired state.

Conclusion:

Hence, this was all about rendering elements in ReactJS. Share the tutorial with your ReactJS friends and stay in touch with us for more such guides.

Happy Coding!

Click to rate this post!
[Total: 5 Average: 5]
Bharat Desai

Bharat Desai is a Co-Founder at MageComp. He is an Adobe Magento Certified Frontend Developer 🏅 with having 8+ Years of experience and has developed 150+ Magento 2 Products with MageComp. He has an unquenchable thirst to learn new things. On off days you can find him playing the game of Chess ♟️ or Cricket 🏏.

Recent Posts

Five Essential Payroll Compliance Tips for eCommerce Startups

Are you setting up a payroll system for your eCommerce startup? Ensuring compliance with myriad…

10 hours ago

Optimizing Laravel Blade: Unlocking Advanced Fetcher Techniques

In the expansive universe of Laravel development, Blade serves as the stellar templating engine, propelling…

11 hours ago

Magento 2: Add Quantity Increment and Decrement on Category Page

Hello Magento Friends, In this blog, we will discuss about adding quantity increment and decrement…

2 days ago

How to Integrate ChatGPT with Laravel Application?

In this guide, we'll explore how to integrate ChatGPT, an AI-powered chatbot, with a Laravel…

5 days ago

What are Net Sales? How to Calculate Your Net Sales?

In the world of business, understanding financial metrics is crucial for making informed decisions and…

1 week ago

Magento 2 Extensions Digest April 2024 (New Release & Updates)

Welcome to the MageComp Monthly Digest, where we bring you the latest updates, releases, and…

1 week ago