Permalink
1
// UI component for user profile
2
export default function UserProfile({ user }) {
4
<div className="box-center">
5
<img src={user.photoURL} className="card-img-center" />
7
<i>@{user.username}</i>
9
<h1>{user.displayName}</h1>
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.