feat(dashboard): move status card to separate control, add tabs

This commit is contained in:
KostyaDanovsky 2017-06-13 20:27:11 +03:00
parent 2afb26810e
commit c483e46e71
7 changed files with 143 additions and 85 deletions

View file

@ -0,0 +1,18 @@
import { NgModule } from '@angular/core';
import { NgaTabsetModule } from '@nga/theme';
import { SharedModule } from '../../shared.module';
import { DashboardComponent } from './dashboard.component';
import { StatusCardsComponent } from './status-cards/status-cards.component';
@NgModule({
imports: [
SharedModule,
NgaTabsetModule,
],
declarations: [
DashboardComponent,
StatusCardsComponent,
],
})
export class DashboardModule { }