import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-notification-center', templateUrl: './notification-center.page.html', styleUrls: ['./notification-center.page.scss'], }) export class NotificationCenterPage implements OnInit { constructor() { } ngOnInit() { } }