import { DigiNgSkeletonBaseModule } from '@af/digi-ng/_skeleton/skeleton-base'; import { CommonModule } from '@angular/common'; import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { LoggedInShellModule } from '../../components/logged-in-shell/logged-in-shell.module'; import { ParticipantsListModule } from './components/participants-list/participants-list.module'; import { ParticipantsRoutingModule } from './participants-routing.module'; import { ParticipantsComponent } from './participants.component'; @NgModule({ schemas: [CUSTOM_ELEMENTS_SCHEMA], declarations: [ParticipantsComponent], imports: [ CommonModule, ParticipantsRoutingModule, FormsModule, DigiNgSkeletonBaseModule, ParticipantsListModule, LoggedInShellModule, ], }) export class ParticipantsModule {}