easy
+5 XP
FRONTEND

Children Prop

Create a Card component that wraps content via children prop.
You're exploring as a guest. Create a free account to save progress and submit solutions.
function Card({ title, children }) {
  // Your code here
}

export default function App() {
  return <Card title="My Card"><p>Content</p></Card>;
}