Skip to content

Instantly share code, notes, and snippets.

@Tecayehuatl
Created May 25, 2020 15:29
Show Gist options
  • Save Tecayehuatl/94e49b8f3890a1de352b5671400212db to your computer and use it in GitHub Desktop.
Save Tecayehuatl/94e49b8f3890a1de352b5671400212db to your computer and use it in GitHub Desktop.
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