1.1.0 • Published 5 years ago

@ukho/notifications v1.1.0

Weekly downloads
-
License
-
Repository
-
Last release
5 years ago

@ukho/notifications

This project provides a notifications service, a @ngrx/store slice and selectors.

Usage

Import the NgModule from this library, and call the forRoot() method in the imports of your NgModule where you want to provide the notifications implementation.

For example:

import { NotificationsModule } from '@ukho/notifications';

...

@NgModule({
  imports: [
    ...
    NotificationsModule.forRoot(),
  ],
  ...
})
export class AppModule {}