UNPKG

@dbs-portal/module-identity

Version:

Identity management module for user and role management

25 lines 731 B
/** * User Create Page * * Complete page component for creating new users with form handling, * validation, 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 UserCreatePageProps { /** * Navigation function to handle route changes */ onNavigate?: (path: string) => void; /** * Custom handlers for user creation flow */ onBack?: () => void; onUserCreated?: (userId: string) => void; /** * Additional styling */ className?: string; } export declare const UserCreatePage: React.FC<UserCreatePageProps>; //# sourceMappingURL=UserCreatePage.d.ts.map