1 |
50041
|
myrto.kouk
|
import {NgModule} from "@angular/core";
|
2 |
|
|
import {CommonModule} from "@angular/common";
|
3 |
|
|
import {TabsModule} from "ngx-bootstrap";
|
4 |
50246
|
myrto.kouk
|
import { CKEditorModule } from 'ng2-ckeditor';
|
5 |
|
|
|
6 |
50041
|
myrto.kouk
|
import {AdminPgComponent} from "./adminPg.component";
|
7 |
|
|
import {AdminPgHelpTextsComponent} from "./adminPg-help-texts.component";
|
8 |
|
|
import {AdminPgRouting} from "./adminPg.routing";
|
9 |
50044
|
myrto.kouk
|
import {AdminPgMetricsComponent} from './adminPg-metrics.component';
|
10 |
50239
|
myrto.kouk
|
import { ReusableComponentsModule } from '../../shared/reusablecomponents/reusable-components.module';
|
11 |
50246
|
myrto.kouk
|
import { FormsModule } from '@angular/forms';
|
12 |
50041
|
myrto.kouk
|
|
13 |
|
|
@NgModule ({
|
14 |
|
|
imports: [
|
15 |
|
|
CommonModule,
|
16 |
|
|
TabsModule.forRoot(),
|
17 |
50246
|
myrto.kouk
|
FormsModule,
|
18 |
|
|
CKEditorModule,
|
19 |
50239
|
myrto.kouk
|
AdminPgRouting,
|
20 |
|
|
ReusableComponentsModule
|
21 |
50041
|
myrto.kouk
|
],
|
22 |
|
|
declarations: [
|
23 |
|
|
AdminPgComponent,
|
24 |
50044
|
myrto.kouk
|
AdminPgHelpTextsComponent,
|
25 |
|
|
AdminPgMetricsComponent
|
26 |
50041
|
myrto.kouk
|
]
|
27 |
|
|
})
|
28 |
|
|
|
29 |
|
|
export class AdminPgModule {}
|