Login:Src:Types: add GreetingCreateUserContainerProps type

This commit is contained in:
Darya Umrikhina 2024-08-15 15:32:17 +04:00
parent 11341df63d
commit ff0219f824

View File

@ -164,6 +164,13 @@ export type GreetingContainersProps = {
welcomeTitle?: string;
};
export type GreetingCreateUserContainerProps = {
type: string;
firstName?: string;
lastName?: string;
culture?: string;
};
export type LoginProps = {
searchParams: { [key: string]: string };
isAuthenticated?: boolean;