-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdialogGuidanceStudentModule.ts
More file actions
22 lines (21 loc) · 1.05 KB
/
dialogGuidanceStudentModule.ts
File metadata and controls
22 lines (21 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { NgModule } from '@angular/core';
import { StudentComponentModule } from '../../../../app/student/student.component.module';
import { DialogGuidanceStudentComponent } from './dialog-guidance-student/dialog-guidance-student.component';
import { MatButtonToggleModule } from '@angular/material/button-toggle';
import { DialogGuidanceFeedbackService } from '../../services/dialogGuidanceFeedbackService';
import { StudentTeacherCommonModule } from '../../../../app/student-teacher-common.module';
import { ComputerAvatarSelectorComponent } from '../../vle/computer-avatar-selector/computer-avatar-selector.component';
import { ChatInputComponent } from '../../common/chat-input/chat-input.component';
@NgModule({
declarations: [DialogGuidanceStudentComponent],
imports: [
ChatInputComponent,
ComputerAvatarSelectorComponent,
MatButtonToggleModule,
StudentComponentModule,
StudentTeacherCommonModule
],
providers: [DialogGuidanceFeedbackService],
exports: [DialogGuidanceStudentComponent]
})
export class DialogGuidanceStudentModule {}