import { Component, Input } from "@angular/core";
@Component({
selector: "innernotif-content",
template: `
Custom Notification
{{notifyTitle}}
{{notifyText}}
`
})
export class InnerNotifContent {
@Input() notifyTitle: string;
@Input() notifyText: string;
}