Skip to content

Instantly share code, notes, and snippets.

@chsami
Last active February 2, 2019 11:41
Show Gist options
  • Save chsami/ec93be8cd35cf0dae4e57da3b4f746c8 to your computer and use it in GitHub Desktop.
Save chsami/ec93be8cd35cf0dae4e57da3b4f746c8 to your computer and use it in GitHub Desktop.
export class MoviesComponent {
constructor() {}
getMovies(): void {
this.http.get('http://example.com/movies.json').toPromise().then((response) => {
console.log(response);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment