[Refactoring][Breaking Changes]
- Move `reducers` and `actions` folders to `store` folder. - Move pages container components to `containers` folder.
This commit is contained in:
37
src/containers/people/IPeopleComponentProps.ts
Normal file
37
src/containers/people/IPeopleComponentProps.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
export interface IPeopleComponentProps {
|
||||
|
||||
/**
|
||||
* Router match
|
||||
*
|
||||
* @type {*}
|
||||
* @memberof IPeopleComponentProps
|
||||
*/
|
||||
match?: any
|
||||
|
||||
/**
|
||||
* Circles loaded {true} or not {false}
|
||||
*
|
||||
* @type {boolean}
|
||||
* @memberof IPeopleComponentProps
|
||||
*/
|
||||
circlesLoaded?: boolean
|
||||
|
||||
/**
|
||||
* Rediret to another route
|
||||
*
|
||||
* @memberof IPeopleComponentProps
|
||||
*/
|
||||
goTo?: (url: string) => any
|
||||
|
||||
/**
|
||||
* Set title of top bar
|
||||
*
|
||||
* @memberof IPeopleComponentProps
|
||||
*/
|
||||
setHeaderTitle?: (title: string) => any
|
||||
|
||||
/**
|
||||
* Translate to locale string
|
||||
*/
|
||||
translate?: (state: any) => any
|
||||
}
|
||||
Reference in New Issue
Block a user