refactor(app): rename components

This commit is contained in:
Dmitry Nehaychik 2017-04-28 15:14:05 +03:00
parent afc24fe88f
commit 4fe5c69d8e
10 changed files with 17 additions and 17 deletions

View file

@ -12,7 +12,7 @@ import {
NgaUserModule,
} from '@nga/theme';
import { SearchInputComponent, BaseHeaderComponent, BaseFooterComponent } from './components';
import { SearchInputComponent, HeaderComponent, FooterComponent } from './components';
import { OneColumnLayoutComponent } from './layouts';
const BASE_MODULES = [
@ -31,15 +31,15 @@ const NGA_MODULES = [
];
const COMPONENTS = [
BaseHeaderComponent,
BaseFooterComponent,
HeaderComponent,
FooterComponent,
SearchInputComponent,
];
const LAYOUTS = [
OneColumnLayoutComponent,
BaseHeaderComponent,
BaseFooterComponent,
HeaderComponent,
FooterComponent,
];
@NgModule({