import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-notification', templateUrl: './notification.component.html', styleUrls: ['./notification.component.less'] }) export class NotificationComponent implements OnInit, OnDestroy { constructor() { } ngOnInit() { } ngOnDestroy(){ } }