import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-notifications', templateUrl: './notifications.component.html', styleUrls: ['./notifications.component.scss'] }) export class NotificationsComponent implements OnInit { notifications: Array<{ text: string, timeStamp: string, description?: string, redirectionUrl?: string, }> = [{ text: 'New name application has been submitted', description: 'A new Applicant in the company name Kimao has applied for an appeal', timeStamp: '1 hour ago', }, { text: 'Entity Corp. flagged for investigation', timeStamp: '2 days ago', redirectionUrl: '/tabs/investigate-business-entities-and-individuals', }, { text: 'Request to create a panel', timeStamp: '1 day ago', redirectionUrl: '/tabs/investigate-business-entities-and-individuals', }, { text: 'Review non-compliance for Entity Corp.', timeStamp: '4 hours ago', redirectionUrl: '/tabs/investigate-business-entities-and-individuals', }, { text: 'Concur non-compliance for Entity Corp.', timeStamp: '2 hours ago', redirectionUrl: '/tabs/investigate-business-entities-and-individuals', }, { text: 'Investigation complete', timeStamp: '1 hours ago', redirectionUrl: '/tabs/investigate-business-entities-and-individuals', }, { text: 'New name application has been submitted', description: 'A new Applicant in the company name Kimao has applied for an appeal', timeStamp: '1 hour ago', }, { text: 'Request to create a new Committee', timeStamp: '2 hours ago', }]; constructor() { } ngOnInit(): void { } }