- Move `reducers` and `actions` folders to `store` folder. - Move pages container components to `containers` folder.
27 lines
420 B
TypeScript
27 lines
420 B
TypeScript
export interface IResetPasswordComponentProps {
|
|
|
|
/**
|
|
* Reset password
|
|
*
|
|
* @memberof IResetPasswordComponentProps
|
|
*/
|
|
resetPassword?: (email: string) => any
|
|
|
|
/**
|
|
* Redirect to login page
|
|
*
|
|
* @memberof IResetPasswordComponentProps
|
|
*/
|
|
loginPage?: () => void
|
|
|
|
/**
|
|
* Styles
|
|
*/
|
|
classes?: any
|
|
|
|
/**
|
|
* Translate to locale string
|
|
*/
|
|
translate?: (state: any, param?: {}) => any
|
|
}
|