push stuff
This commit is contained in:
parent
08a8f464f3
commit
6e0b059241
4 changed files with 34 additions and 1 deletions
4
src/app/push/push.component.html
Normal file
4
src/app/push/push.component.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
<push-notification
|
||||
title="hello"
|
||||
body="hi">
|
||||
</push-notification>
|
19
src/app/push/push.component.ts
Normal file
19
src/app/push/push.component.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import { Component, OnInit} from '@angular/core'
|
||||
import { PushNotificationComponent } from 'ng2-notifications/ng2-notifications';
|
||||
|
||||
@Component({
|
||||
selector: 'push',
|
||||
templateUrl: './push.component.html',
|
||||
|
||||
})
|
||||
|
||||
|
||||
export class PushComponent {
|
||||
|
||||
constructor(){}
|
||||
|
||||
ngOnInit(){
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue