UNPKG

@ouim/simple-logto

Version:

A simpler way to use @logto/react with prebuilt UI components and hooks for fast authentication setup

11 lines (10 loc) 327 B
import React from 'react'; import type { AdditionalPage } from './types'; export interface UserCenterProps { className?: string; globalSignOut?: boolean; themeClassnames?: string; signoutCallbackUrl?: string; additionalPages?: AdditionalPage[]; } export declare const UserCenter: React.FC<UserCenterProps>;