@ukho/cdp-metadata
This project provides an @ukho/cdp-metadata
implementation including @ngrx/store
feature for metadata providing actions, reducers, effects, 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 cdp-metadata implementation.
For example:
import { MintMetadataModule } from '@ukho/cdp-metadata';
...
@NgModule({
imports: [
...
MintMetadataModule.forRoot(),
],
...
})
export class AppModule {}