[Update Package] Update material UI package which changed the UI code too.

This commit is contained in:
Qolzam
2018-02-01 13:36:28 +07:00
parent 44200f53b4
commit cff405849f
73 changed files with 1999 additions and 1148 deletions

View File

@@ -5,19 +5,24 @@ export interface ISignupComponentProps {
*
* @memberof ISignupComponentState
*/
showError: (message: string) => any
showError?: (message: string) => any
/**
* Register user
*
* @memberof ISignupComponentState
*/
register: (data: any) => any
register?: (data: any) => any
/**
* Login
*
* @memberof ISignupComponentState
*/
loginPage: () => any
loginPage?: () => any
/**
* Styles
*/
classes?: any
}