Skip to content

Instantly share code, notes, and snippets.

@kobvel
Created January 28, 2018 20:56
Show Gist options
  • Save kobvel/5ee2ed3576c79b91cb3a1c8ea3a0910b to your computer and use it in GitHub Desktop.
Save kobvel/5ee2ed3576c79b91cb3a1c8ea3a0910b to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { ApiService } from './api.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent {
title = 'app';
constructor(private apiService: ApiService) {
apiService.serviceCall();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment