function App() { return <User name="John Doe" /> } function User(props) { return <h1>Hello, {props.name}</h1>; // Hello, John Doe! }