Props (properties) are used to pass data from parent to child components. They are read-only (immutable) from the child's perspective, ensuring a predictable one-way data flow in React applications.
<UserProfile name="John" age={30} />