-
Notifications
You must be signed in to change notification settings - Fork 30
/
job-management.module.ts
29 lines (28 loc) · 1.21 KB
/
job-management.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ReactiveFormsModule, FormsModule } from '@angular/forms';
import { BasicsComponent } from './basics/basics.component';
import { JobManagementRoutingModule } from './job-management-routing.module';
import { FlexLayoutModule } from '@angular/flex-layout';
import { MaterialModule } from '../../material/material.module';
import { RootComponent } from './root/root.component';
import { DescriptionComponent } from './description/description.component';
import { CKEditorModule } from '@ckeditor/ckeditor5-angular';
import { SharedModule } from '../../shared/shared.module';
import { ApplicationComponent } from './application/application.component';
import { TagsComponent } from './tags/tags.component';
import { PublishComponent } from './publish/publish.component';
@NgModule({
declarations: [BasicsComponent, RootComponent, DescriptionComponent, ApplicationComponent, TagsComponent, PublishComponent],
imports: [
CKEditorModule,
CommonModule,
SharedModule,
ReactiveFormsModule,
FormsModule,
JobManagementRoutingModule,
FlexLayoutModule,
MaterialModule
]
})
export class JobManagementModule { }