Created
May 25, 2020 15:29
-
-
Save Tecayehuatl/94e49b8f3890a1de352b5671400212db to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface IApp { | |
username: string; | |
password: string; | |
authenticationMessage: string; | |
} | |
export interface IAppState { | |
AppState: IApp; | |
} | |
export const initialAppState: IApp = { | |
username: null, | |
password: null, | |
authenticationMessage: null, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment