2019-01-10 15:06:10 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
|
|
|
import { ProjectorRoutingModule } from './projector-routing.module';
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
|
|
import { ProjectorListComponent } from './components/projector-list/projector-list.component';
|
|
|
|
import { ProjectorDetailComponent } from './components/projector-detail/projector-detail.component';
|
2019-02-14 12:29:02 +01:00
|
|
|
import { ProjectorMessageListComponent } from './components/projector-message-list/projector-message-list.component';
|
2019-02-14 16:02:18 +01:00
|
|
|
import { CountdownControlsComponent } from './components/countdown-controls/countdown-controls.component';
|
2019-03-19 17:20:38 +01:00
|
|
|
import { CountdownDialogComponent } from './components/countdown-dialog/countdown-dialog.component';
|
2019-01-10 15:06:10 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, ProjectorRoutingModule, SharedModule],
|
|
|
|
declarations: [
|
|
|
|
ProjectorListComponent,
|
|
|
|
ProjectorDetailComponent,
|
2019-02-14 16:02:18 +01:00
|
|
|
ProjectorMessageListComponent,
|
2019-03-19 17:20:38 +01:00
|
|
|
CountdownControlsComponent,
|
|
|
|
CountdownDialogComponent
|
|
|
|
],
|
|
|
|
entryComponents: [CountdownDialogComponent]
|
2019-01-10 15:06:10 +01:00
|
|
|
})
|
|
|
|
export class ProjectorModule {}
|