1.0.3 • Published 6 years ago

ng-cool-notifier v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

ng-cool-notifier

An easy notifications library for Angular

npm.io

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