X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fapp.module.ts;h=b2b66d61892e8ac55200f8f44b9c9783219a1104;hb=a172837fe042e8acb3030df2d84cd39615cf5a11;hp=b1c6c96a9de8f091f39b3b8feb7e29cfcfb1ed81;hpb=4ad7b00938c3219f42a1017553a36d5f516b45cb;p=demos%2Fkafka%2Fchat diff --git a/src/app/app.module.ts b/src/app/app.module.ts index b1c6c96a..b2b66d61 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,15 +1,25 @@ import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; +import { ReactiveFormsModule } 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'; +import { UserComponent } from './user/user.component'; +import { ChatroomComponent } from './chatroom/chatroom.component'; @NgModule({ declarations: [ - AppComponent + AppComponent, + ChatroomsComponent, + UserComponent, + ChatroomComponent ], imports: [ BrowserModule, + ReactiveFormsModule, + HttpClientModule, AppRoutingModule ], providers: [],