Understanding Props & State in React.js

Understanding Props & State in React.js

The Dos, Don'ts and everything in between of Props and State.

As a beginner in React.js, you may have heard the terms "props" and "state" thrown around a lot. But what do these terms actually mean, and how do they fit into the bigger picture of building applications with React?

In a nutshell, props and state are two ways to pass data between components in React. They are both essential tools in the React developer's toolkit, and understanding how to use them effectively is key to building powerful and flexible applications.

Props in React.js

In React, props (short for "properties") are a way to pass data from a parent component to a child component. Props are read-only, which means that the child component cannot modify the props that it receives.

Here's an example of how to pass props to a component in React:

class ParentComponent extends React.Component {
  render() {
    return <ChildComponent name="John" age={30} />;
  }
}

In this example, we are passing the name "John" and the age 30 to the ChildComponent as props. The child component can then access these props using this.props.name and this.props.age.

State in React.js

In contrast to props, state is a way to store and modify data within a component. Unlike props, state is private to a component and can be modified within the component.

Here's an example of how to use state in a component:

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0
    };
  }

  render() {
    return <div>{this.state.count}</div>;
  }
}

In this example, we are using the constructor function to initialize the state of the component with a count property set to 0. We can then access and update the count state using this.state.count.

Difference between Props and State in React.js

One of the most important differences between props and state is that props are read-only, while state can be modified. This means that the parent component has control over the props that it passes to the child component, but the child component has control over its own state.

Another difference is that props are passed down from the parent to the child, while state is managed within the component itself. This means that the parent component cannot modify the state of the child component, but the child component can modify its own state.

When to use Props and when to use State in React.js

So, when do we use props and when do we use state in React? As a general rule, it's important to remember that props are used for data that is passed down from the parent component to the child component, while state is used for data that is managed within the component itself.

Here are some guidelines for deciding when to use props and when to use state in your React components:

  • Use props to pass data from a parent component to a child component.

  • Use state to store and modify data within a component.

  • Remember that props are read-only, while state can be modified.

  • Don't modify props within a child component. Instead, use state for data that needs to be modified within the component.

It's also important to note that props and state can be used together in a single component. In some cases, you may want to pass data from the parent component to the child component using props, and then use state to store and modify this data within the child component.

For example, let's say you have a list of items that is being passed down from the parent component to the child component as props. The child component can then use state to store the selected item in the list, and modify this state as needed.

class MyList extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      selectedItem: null
    };
  }

  handleItemClick(item) {
    this.setState({ selectedItem: item });
  }

  render() {
    return (
      <ul>
        {this.props.items.map((item) => (
          <li
            key={item.id}
            onClick={() => this.handleItemClick(item)}
            className={item === this.state.selectedItem ? "selected" : ""}
          >
            {item.name}
          </li>
        ))}
      </ul>
    );
  }
}

In this example, the list of items is passed to the MyList component as props, while the selected item is being stored and modified using state.


Props and state are two important concepts in React that allow you to pass data between components and manage data within a component. You can build more powerful and flexible React applications by understanding the difference between props and state and when to use each. Just remember, props are for data that is passed down from the parent component, while state is for data that is managed within the component itself.