Understanding React Concepts: State and Prop
React, with its declarative and component-based approach, relies on key concepts like state and props to manage and pass data. This blog aims to explain the differences between state and props with examples.
State
State is the internal handling of data of a component. It provides the component's dynamic properties, which might change over time.
Features:
Local to Component: State is specific to the component it belongs to.
Mutable: It can be modified using
setState
.Component-owned: Controlled and managed by the component itself.
Props
Props (short for properties) are external inputs passed to a component. They allow the parent component to communicate with and customize its child components.
Features:
Immutable: Props are read-only and cannot be modified by the child component.
Received from Parent: Passed down from parent to child.
Pure Functions: Components that rely only on props are pure and deterministic.
Examples of State and Props
State Example:
Consider a counter component that manages its count using state.
import React, { useState } from 'react';
const Counter = () => {
const [count, setCount] = useState(0);
const increment = () => {
setCount(count + 1);
};
return (
<div>
<p>Count: {count}</p>
<button onClick={increment}>Increment</button>
</div>
);
};
In this example, count
is a piece of state managed by the Counter
component.
Props Example:
Now, let's create a Greetings
component that receives a name
prop.
import React from 'react';
const Greetings = (props) => {
return <p>Hello, {props.name}!</p>;
};
Here, name
is a prop passed from the parent component when rendering Greetings
:
import React from 'react';
import Greetings from './Greetings';
const App = () => {
return <Greetings name="John" />;
};
Understanding the difference between state and props is important for React developers. State enables components to manage internal dynamic data, while props help in communication between parent and child components.
Thanks for reading!
Subscribe to my newsletter
Read articles from Piyush Nanwani directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
Piyush Nanwani
Piyush Nanwani
Experienced full-stack developer with a passion for tackling complex challenges. Dedicated to helping you become a top 1% mobile app developer. Passionate about mentoring, teaching, and continuous learning in new technologies.