mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-19 14:38:07 +01:00
15 lines
355 B
TypeScript
15 lines
355 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
|
||
|
|
import { routing } from './pages.routing';
|
||
|
|
import { NgaModule } from '../theme/nga.module';
|
||
|
|
|
||
|
|
import { Pages } from './pages.component';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [CommonModule, NgaModule, routing],
|
||
|
|
declarations: [Pages]
|
||
|
|
})
|
||
|
|
export class PagesModule {
|
||
|
|
}
|