import { Component, EventEmitter, Input, Output } from '@angular/core' @Component({ selector: 'ui-header-notifications', template: ` `, styles: [], }) export class HeaderNotificationsComponent { @Input() public notifications = [] @Input() public actionText = 'Mark all as read' @Input() public actionType = 'MARK_ALL_READ' @Output() public action = new EventEmitter() public onClick(e) { e.preventDefault() this.action.emit({ type: this.actionType }) } }