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 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-03-27 12:15:51 +01:00
|
|
|
import { MessageControlsComponent } from './components/message-controls/message-controls.component';
|
|
|
|
import { MessageDialogComponent } from './components/message-dialog/message-dialog.component';
|
2019-03-26 13:50:39 +01:00
|
|
|
import { ProjectorListEntryComponent } from './components/projector-list-entry/projector-list-entry.component';
|
2019-01-10 15:06:10 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, ProjectorRoutingModule, SharedModule],
|
|
|
|
declarations: [
|
|
|
|
ProjectorListComponent,
|
2019-03-26 13:50:39 +01:00
|
|
|
ProjectorListEntryComponent,
|
2019-01-10 15:06:10 +01:00
|
|
|
ProjectorDetailComponent,
|
2019-03-19 17:20:38 +01:00
|
|
|
CountdownControlsComponent,
|
2019-03-27 12:15:51 +01:00
|
|
|
CountdownDialogComponent,
|
|
|
|
MessageControlsComponent,
|
|
|
|
MessageDialogComponent
|
2019-03-19 17:20:38 +01:00
|
|
|
],
|
2019-03-27 12:15:51 +01:00
|
|
|
entryComponents: [CountdownDialogComponent, MessageDialogComponent]
|
2019-01-10 15:06:10 +01:00
|
|
|
})
|
|
|
|
export class ProjectorModule {}
|