easy
+5 XP
FRONTEND

Props Display

Create a UserCard component accepting name, avatar, and bio props.
You're exploring as a guest. Create a free account to save progress and submit solutions.
function UserCard({ name, avatar, bio }) {
  // Your code here
}

export default function App() {
  return <UserCard name="Alice" avatar="/avatar.png" bio="Developer" />;
}