Spaces:
Building
Building
Update flare-ui/src/app/components/chat/chat.component.ts
Browse files
flare-ui/src/app/components/chat/chat.component.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
import { Component, OnDestroy } from '@angular/core';
|
2 |
import { CommonModule } from '@angular/common';
|
3 |
import { FormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';
|
4 |
import { MatButtonModule } from '@angular/material/button';
|
@@ -20,6 +20,7 @@ interface ChatMessage {
|
|
20 |
standalone: true,
|
21 |
imports: [
|
22 |
CommonModule,
|
|
|
23 |
ReactiveFormsModule,
|
24 |
MatButtonModule,
|
25 |
MatIconModule,
|
|
|
1 |
+
import { Component, OnInit, OnDestroy } from '@angular/core';
|
2 |
import { CommonModule } from '@angular/common';
|
3 |
import { FormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';
|
4 |
import { MatButtonModule } from '@angular/material/button';
|
|
|
20 |
standalone: true,
|
21 |
imports: [
|
22 |
CommonModule,
|
23 |
+
FormsModule,
|
24 |
ReactiveFormsModule,
|
25 |
MatButtonModule,
|
26 |
MatIconModule,
|