24 lines
683 B
TypeScript
24 lines
683 B
TypeScript
import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
import {GuestComponent} from './guest.component';
|
|
import {RouterModule} from '@angular/router';
|
|
import {SongTextComponent} from '../../widget-modules/components/song-text/song-text.component';
|
|
import {ShowTypePipe} from '../../widget-modules/pipes/show-type-translater/show-type.pipe';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
RouterModule.forChild([
|
|
{
|
|
path: ':id',
|
|
component: GuestComponent,
|
|
},
|
|
]),
|
|
SongTextComponent,
|
|
ShowTypePipe,
|
|
GuestComponent,
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
})
|
|
export class GuestModule {}
|