23 lines
1012 B
TypeScript
23 lines
1012 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
|
||
|
import { ProjectorRoutingModule } from './projector-routing.module';
|
||
|
import { SharedModule } from '../../shared/shared.module';
|
||
|
import { ProjectorComponent } from './components/projector/projector.component';
|
||
|
import { ProjectorListComponent } from './components/projector-list/projector-list.component';
|
||
|
import { ProjectorDetailComponent } from './components/projector-detail/projector-detail.component';
|
||
|
import { SlideContainerComponent } from './components/slide-container/slide-container.component';
|
||
|
import { FullscreenProjectorComponent } from './components/fullscreen-projector/fullscreen-projector.component';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [CommonModule, ProjectorRoutingModule, SharedModule],
|
||
|
declarations: [
|
||
|
ProjectorComponent,
|
||
|
ProjectorListComponent,
|
||
|
ProjectorDetailComponent,
|
||
|
SlideContainerComponent,
|
||
|
FullscreenProjectorComponent
|
||
|
]
|
||
|
})
|
||
|
export class ProjectorModule {}
|