Altcademy - a Forbes magazine logo Best Coding Bootcamp 2023

How to write a functin in render in ReactJS

A Brief Overview

As you embark on your journey of learning ReactJS, you'll undoubtedly come across the term "render." It's a core component of ReactJS, and understanding it is critical to mastering this library. Let's delve into what render is and how to write a function in it.

Understanding Render in ReactJS

In the simplest terms, the "render" method in ReactJS is responsible for displaying the components on the user interface (UI). We can compare it to a painter who knows exactly what to paint (components) and where to paint it (UI). Its job is to take input data and return what to display.

Writing Your First Render Function

Let's start with a basic example. We'll create a ReactJS component named "HelloWorld" that displays the text "Hello, World!".

class HelloWorld extends React.Component {
  render() {
    return (
      <div>
        Hello, World!
      </div>
    );
  }
}

Here, render() is the function that tells React: "Hey, this is what I want you to show on the screen."

Diving Deeper Into Render

You might be wondering, "What's the syntax within the render function?" That's JSX (JavaScript XML), a syntax extension for JavaScript. It's like JavaScript, but with the power to write HTML-like code in your JavaScript code. In our analogy, JSX is like the paint that our painter (render) uses to create the masterpiece (UI).

Render with Dynamic Data

Now, let's assume we want our HelloWorld component to greet a user with their name. For this, we'll need to make our component dynamic, which means our component will be able to display different things based on different data.

class HelloWorld extends React.Component {
  render() {
    const name = 'John Doe';
    return (
      <div>
        Hello, {name}!
      </div>
    );
  }
}

In this code, {name} is a JavaScript expression embedded in JSX. It's like the painter changing colors based on the painting's requirements.

Render with Props

But what if we want to greet different users with their respective names? We use "props" for that, which is short for properties. Think of props as arguments to a function. Here's how we can use props:

class HelloWorld extends React.Component {
  render() {
    return (
      <div>
        Hello, {this.props.name}!
      </div>
    );
  }
}

// Using the component
<HelloWorld name="John Doe" />

In the above code, we're passing the name "John Doe" as a prop to the HelloWorld component. Our painter now can paint different portraits based on the model!

Render Multiple Elements

We're not limited to returning just one HTML element in our render function. However, there's a catch: the render function must return a single parent element. It's like our painter can paint multiple objects, but they all have to be within one frame.

class HelloWorld extends React.Component {
  render() {
    return (
      <div>
        <h1>Hello, {this.props.name}!</h1>
        <p>Welcome to ReactJS.</p>
      </div>
    );
  }
}

// Using the component
<HelloWorld name="John Doe" />

Conclusion

Imagine being a painter with an array of colors (JSX) and brushes (JavaScript) at your disposal. Your canvas is the web browser, and your vision is user interaction. As a painter, you have the power to create dynamic, vibrant, and interactive paintings (User Interfaces). That's what it feels like to master the art of render functions in ReactJS.

Remember, every great artist was first an amateur. So, keep experimenting, keep learning, and keep coding. Happy rendering!