One in every of React’s core ideas is reusability by way of composable elements. Parts enable splitting complicated UI into separate, reusable items. Nevertheless, for elements to speak, they want a solution to go knowledge to one another. Enter props.
Props enable passing knowledge from a guardian part to a baby part. They’re like perform parameters, however for React elements.
Let’s take a look at a easy instance:
// Mum or dad part
const Mum or dad = () => {
return (
<Youngster
colour="blue"
onClick={handleClick}
/>
);
}
// Youngster part
const Youngster = (props) => {
return <div>{props.colour}</div>
}
The guardian part Mum or dad
passes two props to the kid part Youngster
– a colour
string and an onClick
occasion handler.
The kid part receives these as a props
object and might entry them as props.colour
and props.onClick
.
Defining Props in a Part
To specify the props a part expects, you possibly can outline them within the part perform or class:
// Perform part
const MyComponent = (props) => {
// ...
}
// Class part
class MyComponent extends React.Part {
// ...
}
React will examine that elements are handed all of the props they count on. This helps catch bugs early.
You too can set default values for props:
const MyComponent = (props) => 'blue';
// ...
Passing Props When Rendering Parts
When rendering a part, you go props like perform arguments:
// Mum or dad part
<MyComponent
title={title}
content material={content material}
creator={creator}
/>
Entry these within the youngster part by way of props
.
Props are read-only within the youngster part. The kid can’t modify the props – this retains the info circulation unidirectional.
PropTypes for Validation
It’s a good suggestion to validate props being handed to a part. React gives a PropTypes module to specify prop varieties:
import PropTypes from 'prop-types';
const MyComponent = (props) => {
// ...
}
MyComponent.propTypes = {
title: PropTypes.string.isRequired,
content material: PropTypes.string.isRequired,
creator: PropTypes.form({
identify: PropTypes.string.isRequired,
avatar: PropTypes.string
})
}
This validates props handed to MyComponent
. If invalid props are handed, a warning will seem within the console.
When to Use Props vs State
Whereas props enable passing knowledge right into a part, state is used to trace adjustments inside a part.
Use props for:
- Knowledge that doesn’t change
- Initializing part state
- Passing knowledge from guardian to youngster elements
Use state for:
- Knowledge that adjustments over time
- UI state primarily based on person interplay
- Re-rendering elements when knowledge adjustments
Getting the excellence proper takes observe – misusing props and state is a standard supply of bugs in React.
Conclusion
Props enable completely different elements to work collectively by passing knowledge between them. Outline props a part expects, then go them when rendering:
// Mum or dad
<Youngster title="Hey" />
// Youngster
const Youngster = (props) => {
<h1>{props.title}</h1>
}
Props enable a unidirectional knowledge circulation between mother and father and youngsters. Mixed with state to handle altering knowledge, they make constructing reusable elements a lot simpler in React.