@iconsolutions/metrics
Getting Started
To begin using the library simply run npm i @iconsolutions/metrics in whatever angular app you need to use the library in.
You will need to add the following to the app routing module:
{
path: 'metrics',
canActivate: [roleGuard],
data: { roles: ['ROLE_METRICS'] },
loadChildren: () => import('@iconsolutions/metrics').then((m) => m.MetricsModule)
}