import { Component } from '@angular/core'; import { Observable } from 'rxjs'; import {AlertService, IAlert} from '../services/alert.service'; @Component({ selector: 'app-alert', template: `
` }) export class AlertComponent { alerts$: Observable; constructor(private alertSvr: AlertService) { this.alerts$ = this.alertSvr.alerts; } onClose(al) { this.alertSvr.del(al); } }