mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
19 lines
340 B
TypeScript
19 lines
340 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { PagesComponent } from './pages.component';
|
|
import { PagesRoutingModule } from './pages-routing.module';
|
|
|
|
const PAGES_COMPONENTS = [
|
|
PagesComponent,
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
PagesRoutingModule,
|
|
],
|
|
declarations: [
|
|
...PAGES_COMPONENTS,
|
|
],
|
|
})
|
|
export class PagesModule {
|
|
}
|