useUser
useUser is a helper hook that will returns the signed in user
How to use
import { Plugin } from '@root'
const MyCustomComponent = () => {
    const user = Plugin.usUser()
    
    return (
        <div>
            <p>username: {user.name}</p>
        </div>
    )
}
export default MyCustomComponentLast updated
Was this helpful?
