2019-02-15 12:17:08 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-02-26 13:33:23 +01:00
|
|
|
import { CommonModule } from '@angular/common';
|
2019-02-15 12:17:08 +01:00
|
|
|
|
|
|
|
import { CurrentListOfSpeakersOverlaySlideComponent } from './current-list-of-speakers-overlay-slide.component';
|
2019-02-26 13:33:23 +01:00
|
|
|
import { CommonListOfSpeakersSlideModule } from '../common/common-list-of-speakers-slide.module';
|
|
|
|
import { SharedModule } from 'app/shared/shared.module';
|
|
|
|
import { SLIDE } from 'app/slides/slide-token';
|
2019-02-15 12:17:08 +01:00
|
|
|
|
2019-02-26 13:33:23 +01:00
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, SharedModule, CommonListOfSpeakersSlideModule],
|
|
|
|
declarations: [CurrentListOfSpeakersOverlaySlideComponent],
|
|
|
|
providers: [{ provide: SLIDE, useValue: CurrentListOfSpeakersOverlaySlideComponent }],
|
|
|
|
entryComponents: [CurrentListOfSpeakersOverlaySlideComponent]
|
|
|
|
})
|
2019-02-15 12:17:08 +01:00
|
|
|
export class CurrentListOfSpeakersOverlaySlideModule {}
|