AdminLTE components for Angular
To install this library, run:
$ yarn add ng-admin-lte
# OR
$ npm install ng-admin-lte
Import AdminLteModule
in your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
// Add import
import { AdminLteModule } from 'ng-admin-lte';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Add imported module here
AdminLteModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
MIT © Adam Rutkowski