2020-02-13 15:44:51 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {EntitiesSelectionComponent} from "./entitiesSelection.component";
|
2020-03-03 15:32:43 +01:00
|
|
|
import {MatSelectModule} from "@angular/material";
|
2020-02-13 15:44:51 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
2020-07-13 00:19:30 +02:00
|
|
|
RouterModule, ReactiveFormsModule, MatSelectModule
|
2020-02-13 15:44:51 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
EntitiesSelectionComponent,
|
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
exports: [
|
|
|
|
EntitiesSelectionComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class EntitiesSelectionModule {
|
|
|
|
}
|