UNPKG

@dbs-portal/module-identity

Version:

Identity management module for user and role management

30 lines 816 B
/** * User Details Page * * Complete page component for viewing user details with data fetching, * actions, and navigation. This is a self-contained page that can be * directly used in any application that imports the identity module. */ import React from 'react'; export interface UserDetailsPageProps { /** * User ID to display */ userId: string; /** * Navigation function to handle route changes */ onNavigate?: (path: string) => void; /** * Custom handlers for user actions */ onBack?: () => void; onEdit?: (userId: string) => void; onUserDeleted?: () => void; /** * Additional styling */ className?: string; } export declare const UserDetailsPage: React.FC<UserDetailsPageProps>; //# sourceMappingURL=UserDetailsPage.d.ts.map