2018-01-26 21:30:25 +09:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { PagesComponent } from './pages.component';
|
|
|
|
import { PagesRoutingModule } from './pages-routing.module';
|
2018-01-29 18:16:30 +09:00
|
|
|
import { SidebarComponent } from 'app/commons/layouts/sidebar/sidebar.component';
|
|
|
|
import { CovalentModule } from 'app/commons/ui/covalent/covalent.module';
|
|
|
|
import { MaterialModule } from 'app/commons/ui/material/material.module';
|
2018-01-29 18:53:30 +09:00
|
|
|
import { HeaderComponent } from 'app/commons/layouts/header/header.component';
|
2018-01-26 21:30:25 +09:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
PagesRoutingModule,
|
2018-01-29 18:16:30 +09:00
|
|
|
CovalentModule,
|
|
|
|
MaterialModule
|
2018-01-26 21:30:25 +09:00
|
|
|
],
|
|
|
|
declarations: [
|
2018-01-29 18:16:30 +09:00
|
|
|
PagesComponent,
|
2018-01-29 18:53:30 +09:00
|
|
|
SidebarComponent,
|
|
|
|
HeaderComponent
|
2018-01-26 21:30:25 +09:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class PagesModule { }
|