import { Component } from '@angular/core'; import { OpenLPService } from './openlp.service'; @Component({ selector: 'openlp-remote-alert', template: `

Send an Alert

`, providers: [OpenLPService] }) export class OpenLPAlertComponent { public alert: string; constructor(private openlpService: OpenLPService) { } onSubmit() { console.log('submitted: ', this.alert); this.openlpService.showAlert(this.alert).subscribe(res => console.log(res)); this.alert = ''; } }