1.0.0 • Published 8 years ago
@4geit/ngx-dashboard-module v1.0.0
@4geit/ngx-dashboard-module 
this module setups a dashboard layout
Installation
- A recommended way to install @4geit/ngx-dashboard-module is through npm package manager using the following command:
npm i @4geit/ngx-dashboard-module --saveOr use yarn using the following command:
yarn add @4geit/ngx-dashboard-module- You need to import the
NgxDashboardModuleclass in whatever module you want in your project for instanceapp.module.tsas follows:
import { NgxDashboardModule } from '@4geit/ngx-dashboard-module';And you also need to add the NgxDashboardModule module within the @NgModule decorator as part of the imports list:
@NgModule({
// ...
imports: [
// ...
NgxDashboardModule,
// ...
],
// ...
})
export class AppModule { }1.0.0
8 years ago