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-01-31 13:40:27 +01:00
|
|
|
import { CountdownListComponent } from './components/countdown-list/countdown-list.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-01-10 15:06:10 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, ProjectorRoutingModule, SharedModule],
|
|
|
|
declarations: [
|
|
|
|
ProjectorListComponent,
|
|
|
|
ProjectorDetailComponent,
|
2019-01-31 13:40:27 +01:00
|
|
|
CountdownListComponent,
|
2019-02-14 16:02:18 +01:00
|
|
|
ProjectorMessageListComponent,
|
|
|
|
CountdownControlsComponent
|
2019-01-10 15:06:10 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class ProjectorModule {}
|