Props stand for properties are used to pass data from one component to another in React, usually we pass data from parent to child.
Example-
function Welcome(props) {
return <h1>Hello, {props.name}!</h1>;
}
function App() {
return <Welcome name="Ronak" />;
}