@@ -158,12 +159,13 @@ This component can be tricky to change because of all the nesting, and it is als
First, we will extract `Avatar`:
-```js{3-5}
+```js{3-6}
function Avatar(props) {
return (
+ src={props.user.avatarUrl}
+ alt={props.user.name}
+ />
);
}
```