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