/* This module contains all common components for all landing pages */ import { NgModule} from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { DeletedByInferenceComponent } from './deletedByInference.component'; import { DeletedByInferenceService } from './deletedByInference.service'; import {ResultLandingUtilsModule} from '../resultLandingUtils.module'; import {PagingModule} from '../../../utils/paging.module'; import {ErrorMessagesModule} from '../../../utils/errorMessages.module'; import {ShowAuthorsModule} from "../../../utils/authors/showAuthors.module"; @NgModule({ imports: [ CommonModule, FormsModule, ResultLandingUtilsModule, PagingModule, ErrorMessagesModule, ShowAuthorsModule ], declarations: [ DeletedByInferenceComponent ], providers:[ DeletedByInferenceService ], exports: [ DeletedByInferenceComponent ] }) export class DeletedByInferenceModule { }