Props and State in React

In React, both props and state are essential concepts which are used to manage and control the behavior and appearance of components.

Props or properties are used to pass data between the components (parent to child, child to parent, between siblings etc.). They are immutable which means they can’t change only they can be passed. It provides a way to make components reusable by allowing the parent to configure the child components.

Example:

Javascript




// Parent Component
const ParentComponent = () => {
    return <ChildComponent name="John" age={25} />;
};
 
// Child Component
const ChildComponent = (props) => {
    return (
        <div>
            <p>Name: {props.name}</p>
            <p>Age: {props.age}</p>
        </div>
    );
};


State helps make the React application dynamic and allows for updates based on requirements. Unlike props, state can be modified within the component using its setState function, triggering re-renders to reflect the updated state.

Example:

Javascript




const Counter = () => {
    const [count, setCount] = React.useState(0);
 
    const incrementCount = () => {
        setCount(count + 1);
    };
 
    return (
        <div>
            <p>Count: {count}</p>
            <button onClick={incrementCount}>Increment</button>
        </div>
    );
};


Essential things to know as React Developer

React is an open-source JavaScript library used to create user interfaces in a declarative and efficient way. It is a component-based front-end library responsible only for the view layer of a Model View Controller(MVC) architecture. React is used to create modular user interfaces and promotes the development of reusable UI components that display dynamic data. This article covers all the essential topics provided by ReactJS which every developer should know.

Table of Content

  • Why we should learn ReactJS
  • JSX and its expressions.
  • React Virtual DOM
  • Props and State in React
  • Components in React
  • State Management in React
  • React Hooks
  • Performance
  • Lifecycle Methods in React
  • Conditional Rendering

Similar Reads

1. Why we should learn React ?

React has become one of the most popular JavaScript library of fronend development. It provides fast, scalable web app building capabilities. It has a huge community and fulfilled with lots of inbuild and 3rd parties libraries and packages which makes it a complete frontend development package....

2. JSX and its expressions.

JSX, or JavaScript XML, is an extension to JavaScript used in React to explain the UI components. It looks likes HTML but allows embedding JavaScript expressions inside curly braces. JSX provides a concise and readable way to create React Application....

3. React Virtual DOM

Virtual DOM is one of the crucial feature of ReactJS which makes it really fast. The Virtual DOM is a lightweight copy of actual DOM maintained by React. Every time the state of our application changes, the virtual DOM gets updated instead of the real DOM....

4. Props and State in React

In React, both props and state are essential concepts which are used to manage and control the behavior and appearance of components....

5. Components in React

...

6. State Management in React

...

7. React Hooks

In React, Components are the building blocks which are used to create reusable code of user interface. They can be seen as independent and isolated functions or classes responsible for rendering a part of the UI. In React there are two types of components....

8. Performance

...

9. Lifecycle Methods in React

...

10. Conditional Rendering

State management in React refers to the handling and control of data within components which allows for dynamic updates, re-rendering, and synchronization of user interfaces based on changes in data. There are several ways by which you can manage the state in React....