@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 {}