Used to pass data to Components.
- Make a prop
<Greeting text={'yo'}/>- Use prop value
function Greeting(props){
	return <h1>{props.text}</h1>
}Passing As Object
In app.js:
const myobject = {
	a : 20,
	b : 40
}
function App(){
	return (
		<Mycomponent a={myobject.a} b={myobject.b}/>
	)
}