0.0.2 • Published 7 years ago

ng-admin-lte v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

ng-admin-lte

AdminLTE components for Angular

Build Status

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