How to pass data from one component to another in React?

To pass data from one component to another in React, we pass it as a prop.

For instance, we write

<BigTextMobile data={data} />;

to pass the data state as the value of the data prop of the BigTextMobile from the parent component.