Create a React component that renders 'Hello, {name}!' with a prop.
export default function App() { return <div>Hello, World!</div>; }