DEV Community

Cover image for 📦 React Props: A Visual Guide
Reed Barger
Reed Barger

Posted on • Updated on

📦 React Props: A Visual Guide

Props are a common stumbling block when moving from JavaScript to React.

In reality, using props in React components is almost identical to using arguments in plain JavaScript functions.

Let's take a quick look at what props are in React through some helpful animations. These will help you visualize how props function and how you can use them in your React projects.

How to Pass Data to a JavaScript Function

The following JavaScript function is broken. What will happen if you try to use it?

function sum() {
  return a + b;
} 

sum(); // Reference Error: a is not defined
Enter fullscreen mode Exit fullscreen mode

When sum function is called, it throws a Reference Error: a is not defined

If you call this function, you’re going to get a Reference Error which says, "a is not defined".

This makes sense – the sum function is using two values, a and b, but has no idea what they are.

To fix it, we need to add a and b as parameters and pass two numbers as arguments.

function sum(a, b) {
  return a + b;   
}

sum(2, 2); // 4
Enter fullscreen mode Exit fullscreen mode

Fix the sum function by passing values to both arguments a and b

That’s how you pass data to a JavaScript function, but what about a React component?

How to Pass Data to a React Component

A React component looks a lot like a plain JavaScript function. But unlike a JS function, it returns and renders React elements, such as a button.

function Button() {
  return <button>Click me</button>;   
}
Enter fullscreen mode Exit fullscreen mode

React component, Button, that renders a button element

To call a React component and have it display those elements, we use it as if it was a custom HTML element, but written in JavaScript.

function App() {
  return <Button />;   
}

function Button() {
  return <button>Click me</button>;   
}
Enter fullscreen mode Exit fullscreen mode

Button component is used in another component, App

But how do we pass data to functions when they are called like this?

Using this HTML-like syntax, we can pass it any data we like as if it was a custom HTML attribute.

For example, if we wanted to add our own custom text to our button, we could add a text attribute and set its value equal to some string.

function App() {
  return <Button text="⭐️" />;   
}

function Button() {
  return <button>Click me</button>;   
}
Enter fullscreen mode Exit fullscreen mode

"text" prop is added to the Button component, with value ⭐️

In the world of React, this custom attribute is what is known as a "prop".

We can add as many props to our components as we like. They can be any JavaScript data type.

function App() {
  return <Button text="⭐️" color="green" />;   
}

function Button() {
  return <button>Click me</button>;   
}
Enter fullscreen mode Exit fullscreen mode

prop named "color" (with the value "green") is added to the Button component

If we want to use the props we've passed down to our component, you might think that each one is passed as a separate argument.

Passed props are not provided as separate arguments to a component

But that’s not the case. Unlike a regular JavaScript function, all of these props are collected into one value, which is itself an object.

This single parameter is referred to and named "props”.

All props that are passed to a component become properties on a single object within that component's parameters

It can be named anything, but the convention is to call this parameter "props" because that's what it contains – all of the values that are passed down to this component.

Another reason it makes sense to call these values “props” is because what we've passed down are turned into properties on an object.

Once we’ve passed down the data that we like to our component, they can be used inside that component with curly braces.

function App() {
  return <Button text="⭐️" color="green" />;   
}

function Button(props) {
  return (
    <button style={{ background: props.color }}>
      {props.text}
    </button>
  );
}
Enter fullscreen mode Exit fullscreen mode

And a neat pattern to use if your components are small, is to destructure the props object.

By adding a set of curly braces in your parameters, you can use destructure props into individual variables that you can use directly.

function App() {
  return <Button text="⭐️" color="green" />;   
}

function Button({ color, text }) {
  return (
    <button style={{ background: color }}>
      {text}
    </button>
  );
}
Enter fullscreen mode Exit fullscreen mode

🏆 Become a Professional React Developer

Looking for the ultimate resource to learn React from start to finish?

Introducing: The React Bootcamp

The bootcamp features every resource to help you succeed with React:

  • 🕹️ 100+ hands-on React challenges
  • 🎬 100+ in-depth videos
  • 🛠️ 4+ real-world Next.js projects
  • 📄 10+ essential React cheatsheets
  • 🥾 Complete mini bootcamp on Next.js (app router)
  • 🖼️ Complete series of animated videos (like this article)

Click below to try the React Bootcamp for yourself.

Click to join the React Bootcamp

Click to get started

Top comments (1)

Collapse
 
nixoncode profile image
Nixon Kosgei

nice explanation! what's memo anyway?