openaire-library/fos/fos-selection/fos-selection.module.ts

24 lines
487 B
TypeScript
Raw Normal View History

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 {
}