techhive-fires
Version:
How to build libraries with Angular (2, 4, 5...)
17 lines (12 loc) • 354 B
text/typescript
import { Component, OnInit } from '@angular/core';
import { HelloService } from '../HelloService.service';
({
selector: 'app-hello',
templateUrl: './hello.component.html',
styleUrls: ['./hello.component.css']
})
export class HelloComponent implements OnInit {
constructor(public HelloService: HelloService) { }
ngOnInit() {
}
}