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 {ReactiveFormsModule} from "@angular/forms";
|
2023-03-02 15:20:56 +01:00
|
|
|
import {InputModule} from "../../sharedComponents/input/input.module";
|
|
|
|
import {LoadingModule} from "../../utils/loading/loading.module";
|
|
|
|
import {SdgSelectionComponent} from "./sdg-selection.component";
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2023-03-13 20:23:00 +01:00
|
|
|
CommonModule, ReactiveFormsModule, LoadingModule, InputModule
|
2023-03-02 15:20:56 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
SdgSelectionComponent
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
SdgSelectionComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SdgSelectionModule {
|
|
|
|
|
|
|
|
}
|