UNPKG

techhive-fires

Version:
17 lines (12 loc) 354 B
import { Component, OnInit } from '@angular/core'; import { HelloService } from '../HelloService.service'; @Component({ selector: 'app-hello', templateUrl: './hello.component.html', styleUrls: ['./hello.component.css'] }) export class HelloComponent implements OnInit { constructor(public HelloService: HelloService) { } ngOnInit() { } }