import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { CheckAndExcludeConfigRoutingModule } from './check-and-exclude-config-routing.module'; import { CheckAndExcludeConfigComponent } from './check-and-exclude-config.component'; import { ShareModule } from 'src/app/share/share.module'; @NgModule({ declarations: [CheckAndExcludeConfigComponent], imports: [ CommonModule, CheckAndExcludeConfigRoutingModule, ShareModule, ] }) export class CheckAndExcludeConfigModule { }