13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'notification',
|
|
templateUrl: './notification.component.html',
|
|
styleUrls: ['./notification.component.scss']
|
|
})
|
|
export class NotificationComponent {
|
|
|
|
constructor() {
|
|
}
|
|
}
|