Skip to content

Instantly share code, notes, and snippets.

@vhuerta
Created March 7, 2020 19:28
Show Gist options
  • Select an option

  • Save vhuerta/cb16864e99a7d298d2910f376c1cbd84 to your computer and use it in GitHub Desktop.

Select an option

Save vhuerta/cb16864e99a7d298d2910f376c1cbd84 to your computer and use it in GitHub Desktop.
// INITIAL STATE & TYPE DEFINITION
type Pokemon = {
name: string;
url: string;
};
type PokemonState = {
pokemons: Pokemon[];
isLoading: boolean;
};
const initialState: PokemonState = {
pokemons: [],
isLoading: false
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment