14 lines
242 B
TypeScript
14 lines
242 B
TypeScript
import { Component, OnInit } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-web-services',
|
|
templateUrl: './web-services.component.html'
|
|
})
|
|
export class WebServicesComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() { }
|
|
|
|
}
|