Hislordship
React props are properties that are used to pass data from one react component to the other. Here, we look at components as JavaScript Functions that accept input(props) and return react elements showing what should be rendered on the screen.
In React, data flow is unidirectional that is, data is always passed from the parent component down to the child component. Also, data is read only, child component cannot change data coming from the parent component. Here when we pass down data as props from the parent components it cannot be changed.
Also, from the ChildrenComponent we have something like this below.
From our code, the props is passed like giving an argument to a function in the ChildrenComponent. Props is an object and we render props object by string interpolation using {props.title}. This {props.title} get the data that was passed in from the ParentComponent to this ChildrenComponent.
The use of props allows you to reuse more react code and avoid you repeating several lines of code. Here we reuse the childrenComponent several times by passing different data through it as props.Thank you for today. I believe this blog has helped you in understanding the key features of props
Hislordship is a young talented young man who seeks to explore more in this tech industry. Currently React and Django developer