view data fixes
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
export interface ForgotPasswordFormField {
|
||||
value: string;
|
||||
error?: string;
|
||||
touched: boolean;
|
||||
validating: boolean;
|
||||
}
|
||||
|
||||
export interface ForgotPasswordFormState {
|
||||
fields: {
|
||||
email: ForgotPasswordFormField;
|
||||
};
|
||||
isValid: boolean;
|
||||
isSubmitting: boolean;
|
||||
submitError?: string;
|
||||
submitCount: number;
|
||||
}
|
||||
Reference in New Issue
Block a user