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