Skip to content

Instantly share code, notes, and snippets.

@sendbird-community
Created September 23, 2021 15:03
Show Gist options
  • Save sendbird-community/ae74ed7aa3ea11ee36fce5f0c05d6b51 to your computer and use it in GitHub Desktop.
Save sendbird-community/ae74ed7aa3ea11ee36fce5f0c05d6b51 to your computer and use it in GitHub Desktop.
import React from "react";
import "./profile.scss";
export default function Profile({ user }) {
return (
<div className="profile-component">
<div className="profile-avatar">
<img src={user.profileUrl} alt={user.nickname} />
</div>
<div className="profile-text">
<div className="profile-name">{user.nickname}</div>
<div className="profile-nickname">#{user.userId}</div>
</div>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment