Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Overview of all the hooks associated with users.
useMe
import { useMe } from "@calcom/atoms"; export default function UserDetails() { const { data: userData, isLoading: isLoadingUser } = useMe(); return ( <> {isLoadingUser && <p>Loading...</p>} {!isLoadingUser && !userData && <p>No user found</p>} {!isLoadingUser && !!userData && return ( <div>Username: {userData.username}</div> ) } </> ); }
Was this page helpful?