12 lines
457 B
TypeScript
12 lines
457 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { ParticipantsComponent } from './participants.component';
|
|
|
|
@NgModule({
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
declarations: [ParticipantsComponent],
|
|
imports: [CommonModule, RouterModule.forChild([{ path: '', component: ParticipantsComponent }])],
|
|
})
|
|
export class ParticipantsModule {}
|