fix(build): remove unused libs, make modals work inside nga-layout

This commit is contained in:
Dmitry Nehaychik 2017-06-14 20:13:02 +03:00
parent f217e1f97a
commit 9e62e5d164
4 changed files with 21 additions and 32 deletions

View file

@ -2,7 +2,7 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';
import { NgaCardModule } from '@nga/theme';
import { NgaCardModule, NgaThemeModule } from '@nga/theme';
@NgModule({
exports: [
@ -11,6 +11,7 @@ import { NgaCardModule } from '@nga/theme';
ReactiveFormsModule,
RouterModule,
NgaCardModule,
NgaThemeModule,
],
})
export class SharedModule { }