Skip to content

Instantly share code, notes, and snippets.

@jamesseanwright
Created December 21, 2018 15:15
Show Gist options
  • Select an option

  • Save jamesseanwright/a84f81808dd0dd0ced1d36e5cc9d6605 to your computer and use it in GitHub Desktop.

Select an option

Save jamesseanwright/a84f81808dd0dd0ced1d36e5cc9d6605 to your computer and use it in GitHub Desktop.
Roll Your Own Redux State
export interface State {
messages: string[];
isFormValid: boolean;
isLoadingQuote: boolean;
hasQuoteError: boolean;
}
export const defaultState: State = {
messages: [],
isFormValid: true,
isLoadingQuote: false,
hasQuoteError: false,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment