mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
20 lines
448 B
TypeScript
20 lines
448 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
|
||
|
|
import { PagesComponent } from './pages.component';
|
||
|
|
import { DashboardComponent } from './dashboard/dashboard.component';
|
||
|
|
import { PagesRoutingModule } from './pages-routing.module';
|
||
|
|
import { ThemeModule } from '../@theme/theme.module';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
PagesRoutingModule,
|
||
|
|
ThemeModule
|
||
|
|
],
|
||
|
|
declarations: [
|
||
|
|
PagesComponent,
|
||
|
|
DashboardComponent
|
||
|
|
]
|
||
|
|
})
|
||
|
|
export class PagesModule {
|
||
|
|
}
|