Skip to content

Instantly share code, notes, and snippets.

@Ruivilela
Last active January 9, 2017 18:31
Show Gist options
  • Save Ruivilela/2a7c0652bde0eda261bd953eaab1a0d0 to your computer and use it in GitHub Desktop.
Save Ruivilela/2a7c0652bde0eda261bd953eaab1a0d0 to your computer and use it in GitHub Desktop.
export class AppComponent {
pokemon: Pokemon;
constructor(private pokedexService: PokedexService) {}
ngOnInit(){
this.pokedexService.getPokemon(1).subscribe(
result => { this.pokemon = result }
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment