24 lines
487 B
TypeScript
24 lines
487 B
TypeScript
|
import {CommonModule} from "@angular/common";
|
||
|
import {NgModule} from "@angular/core";
|
||
|
import {FormsModule} from "@angular/forms";
|
||
|
import {LoadingModule} from "../../utils/loading/loading.module";
|
||
|
|
||
|
// import {FosSelectionComponent} from './fos-selection.component';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule, FormsModule, LoadingModule
|
||
|
],
|
||
|
declarations: [
|
||
|
// FosSelectionComponent
|
||
|
],
|
||
|
providers: [
|
||
|
|
||
|
],
|
||
|
exports: [
|
||
|
// FosSelectionComponent
|
||
|
]
|
||
|
})
|
||
|
export class FosSelectionModule {
|
||
|
|
||
|
}
|