ng-cool-notifier
v1.0.3
Published
> An easy notifications library for Angular
Downloads
1
Maintainers
Readme
ng-cool-notifier
An easy notifications library for Angular
Table of Contents
Example
Soon
Setup
Import the CoolNotifierModule
in to your root AppModule
import { CoolNotifierModule } from 'ng-cool-notifier';
@NgModule({
imports: [
BrowserModule,
CoolNotifierModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
Usage
Add the CoolNotifierComponent in to the component where you want to use the notifications. Or in your top level component for use in child components.
...
template: '<cool-notifier></cool-notifier>'
...
Creating Notifications
Soon
Options
Soon