← Back tothis vs that

ReactNode vs ReactElement

Written byPhuoc Nguyen
Category
React
Created
01 Sep, 2023
React is a widely used JavaScript library for building user interfaces. It offers developers an easy and efficient way to create reusable UI components. As you delve into React, you may encounter two terms: `ReactNode` and `ReactElement`. In this post, we'll explore the distinctions between these two concepts.

ReactNode

A `ReactNode` is a versatile type that can represent any node in a React component tree. It can be a `ReactElement`, a string, a number, a boolean, `null`, or `undefined`. In simpler terms, a `ReactNode` can be any value that can be displayed as a child of a React component.
Here's an example of a `ReactNode`:
const node: React.ReactNode = <p>Hello, world!</p>;
In this example, `node` is a `ReactNode` that represents a `ReactElement` containing the phrase `Hello, world!`.

ReactElement

On the other hand, a `ReactElement` is a type of `ReactNode` that represents a single UI element in a React component tree. It's created using either a React component or a JSX expression.
To give you an idea, here's an example of a `ReactElement`:
const element: React.ReactElement = <button>Click me</button>;
In this example, `element` refers to a `ReactElement` that represents a button with the text `Click me`.

Differences

The difference between `ReactNode` and `ReactElement` is that `ReactNode` is a value that can be rendered as a child of a React component, while `ReactElement` represents a single UI element.
Another distinction is that `ReactElement` is created using a React component or a JSX expression, whereas `ReactNode` can be any value that can be rendered.

Questions? 🙋

Do you have any questions? Not just about this specific post, but about any topic in front-end development that you'd like to learn more about? If so, feel free to send me a message on Twitter or send me an email. You can find them at the bottom of this page.
I have a long list of upcoming posts, but your questions or ideas for the next one will be my top priority. Let's learn together! Sharing knowledge is the best way to grow 🥷.

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn