Skip to content

Instantly share code, notes, and snippets.

@annacoding2020
Last active October 11, 2020 21:41
Show Gist options
  • Select an option

  • Save annacoding2020/8fe0f6f980713101a47f5c1e7958db53 to your computer and use it in GitHub Desktop.

Select an option

Save annacoding2020/8fe0f6f980713101a47f5c1e7958db53 to your computer and use it in GitHub Desktop.
function Avatar({ username, src, usernameIsHidden = false }) {
return (
<div>
<img src={src} />
{!usernameIsHidden && <h4 data-testid="username">{username}</h4>}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment