Create a Card component that wraps content via children prop.
function Card({ title, children }) { // Your code here } export default function App() { return <Card title="My Card"><p>Content</p></Card>; }