presenter function base
This commit is contained in:
29
src/app/modules/presentation/presentation.module.ts
Normal file
29
src/app/modules/presentation/presentation.module.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import {NgModule} from '@angular/core';
|
||||
import {CommonModule} from '@angular/common';
|
||||
|
||||
import {PresentationRoutingModule} from './presentation-routing.module';
|
||||
import {MonitorComponent} from './monitor/monitor.component';
|
||||
import {RemoteComponent} from './remote/remote.component';
|
||||
import {CardModule} from '../../widget-modules/components/card/card.module';
|
||||
import {MatFormFieldModule} from '@angular/material/form-field';
|
||||
import {MatSelectModule} from '@angular/material/select';
|
||||
import {ShowTypeTranslaterModule} from '../../widget-modules/pipes/show-type-translater/show-type-translater.module';
|
||||
import {SectionTypeTranslatorModule} from '../../widget-modules/pipes/section-type-translator/section-type-translator.module';
|
||||
import {SongTextModule} from '../../widget-modules/components/song-text/song-text.module';
|
||||
|
||||
|
||||
@NgModule({
|
||||
declarations: [MonitorComponent, RemoteComponent],
|
||||
imports: [
|
||||
CommonModule,
|
||||
PresentationRoutingModule,
|
||||
CardModule,
|
||||
MatFormFieldModule,
|
||||
MatSelectModule,
|
||||
ShowTypeTranslaterModule,
|
||||
SectionTypeTranslatorModule,
|
||||
SongTextModule
|
||||
]
|
||||
})
|
||||
export class PresentationModule {
|
||||
}
|
||||
Reference in New Issue
Block a user