X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fapp.module.ts;h=d947470ccc23b3bfe6c17e04b3a4bc1858a6bf7d;hb=53ae6990eb208b7631e46d95a4a65215e1b1b5ac;hp=b1c6c96a9de8f091f39b3b8feb7e29cfcfb1ed81;hpb=4ad7b00938c3219f42a1017553a36d5f516b45cb;p=demos%2Fkafka%2Fchat diff --git a/src/app/app.module.ts b/src/app/app.module.ts index b1c6c96a..d947470c 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,15 +1,21 @@ import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; +import { FormsModule } from "@angular/forms"; +import { HttpClientModule } from '@angular/common/http'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; +import { ChatroomsComponent } from './chatrooms/chatrooms.component'; @NgModule({ declarations: [ - AppComponent + AppComponent, + ChatroomsComponent ], imports: [ BrowserModule, + FormsModule, + HttpClientModule, AppRoutingModule ], providers: [],