2023-03-02 15:20:56 +01:00
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {NgModule} from "@angular/core";
|
2023-03-13 20:23:00 +01:00
|
|
|
import {FormsModule, ReactiveFormsModule} from "@angular/forms";
|
2023-03-02 15:20:56 +01:00
|
|
|
import {InputModule} from "../../sharedComponents/input/input.module";
|
|
|
|
import {SearchInputModule} from "../../sharedComponents/search-input/search-input.module";
|
|
|
|
import {LoadingModule} from "../../utils/loading/loading.module";
|
|
|
|
import {FosSelectionComponent} from './fos-selection.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2023-03-13 20:23:00 +01:00
|
|
|
CommonModule, ReactiveFormsModule, LoadingModule, InputModule, SearchInputModule
|
2023-03-02 15:20:56 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
FosSelectionComponent
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
FosSelectionComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class FosSelectionModule {
|
|
|
|
|
|
|
|
}
|