Skip to content

Instantly share code, notes, and snippets.

@sagar-ganatra
Created June 23, 2019 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sagar-ganatra/710a21d0fc196694691eaa124405cf24 to your computer and use it in GitHub Desktop.
Save sagar-ganatra/710a21d0fc196694691eaa124405cf24 to your computer and use it in GitHub Desktop.
export function initApp(http: HttpClient) {
return () => {
return http.get('https://api.github.com/users/sagar-ganatra')
.toPromise()
.then((resp) => {
console.log('Response 1 - ', resp);
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment