@anviltech/wuf-ang-dashboard

A dashboard component that includes layout and left-side KPI indicators.

Usage no npm install needed!

<script type="module">
  import anviltechWufAngDashboard from 'https://cdn.skypack.dev/@anviltech/wuf-ang-dashboard';
</script>

README

Dashboard

A dashboard component that includes layout and left-side KPI indicators.

Installation

Install this package with the following command:

npm install @anviltech/wuf-ang-dashboard --save

or

yarn add @anviltech/wuf-ang-dashboard

Import this package into your application's app.module.ts file:

import { WufDashboardModule } from '@anviltech/wuf-ang-dashboard';

Add to the imports section of app.module.ts:

imports: [
    WufDashboardModule.forRoot()
]

When this package is used in any application submodule (not the main app.module.ts file), do not include .forRoot():

imports: [
    WufDashboardModule
]