## kwikui

## Installation

```
npm install --save kwikui
```

## Usage

Add KwikUIModule to imports `app.module.ts` something like

```js
import { BrowserModule } from  '@angular/platform-browser';
import { NgModule } from  '@angular/core';
import { AppComponent } from  './app.component';
import { KwikUIModule } from  'kwikui';

@NgModule({
  declarations: [AppComponent],
  imports: [ BrowserModule, KwikUIModule],
  bootstrap: [AppComponent]
})
```
