blob: 70f5b8845a28330048880a507e0bceb51f7a0840 (
plain)
1
2
3
4
5
6
7
8
9
|
import React from 'react'
import { useAuth } from '../../auth'
function ProfileName() {
const { isLoading, user } = useAuth()
return isLoading ? <span>Loading...</span> : <span>{user.name}</span>
}
export default ProfileName
|