ng-admin-lte
v0.0.2
Published
**AdminLTE components for Angular**
Downloads
5
Readme
ng-admin-lte
AdminLTE components for Angular
Installation
To install this library, run:
$ yarn add ng-admin-lte
# OR
$ npm install --save ng-admin-lte
Usage
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 build
To lint all *.ts
files:
$ npm run lint
License
MIT © Adam Rutkowski