ngx-admin/docs/app/pages/pages.module.ts

20 lines
340 B
TypeScript
Raw Normal View History

2021-08-06 18:48:35 +03:00
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 {
}