[Refactoring][Breaking Changes]
- Move `reducers` and `actions` folders to `store` folder. - Move pages container components to `containers` folder.
This commit is contained in:
35
src/containers/setting/ISettingComponentState.ts
Normal file
35
src/containers/setting/ISettingComponentState.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
export interface ISettingComponentState {
|
||||
|
||||
/**
|
||||
* Password input value
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ISettingComponentState
|
||||
*/
|
||||
passwordInput: string
|
||||
|
||||
/**
|
||||
* Password input error text
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ISettingComponentState
|
||||
*/
|
||||
passwordInputError: string
|
||||
|
||||
/**
|
||||
* Confirm input value
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ISettingComponentState
|
||||
*/
|
||||
confirmInput: string
|
||||
|
||||
/**
|
||||
* Confirm input error
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ISettingComponentState
|
||||
*/
|
||||
confirmInputError: string
|
||||
}
|
||||
Reference in New Issue
Block a user