@adonis-agora/authkit-react
Version:
Frontend ergonomics over AuthKit for AdonisJS + Inertia + React apps: a typed useAuth() hook, role-gating hooks and gating components.
9 lines (8 loc) • 351 B
TypeScript
export interface UserProfileProps {
className?: string;
}
declare function UserProfileInner({ className }: UserProfileProps): import("react").DetailedReactHTMLElement<{
className: string;
}, HTMLElement> | null;
export declare function UserProfile(props: Parameters<typeof UserProfileInner>[0]): import("react").JSX.Element | null;
export {};