feat: The available chatrooms are fetched and displayed in a component
[demos/kafka/chat] / src / app / app.module.ts
1 import { NgModule } from '@angular/core';
2 import { BrowserModule } from '@angular/platform-browser';
3 import { FormsModule } from "@angular/forms";
4 import { HttpClientModule } from '@angular/common/http';
5
6 import { AppRoutingModule } from './app-routing.module';
7 import { AppComponent } from './app.component';
8 import { ChatroomsComponent } from './chatrooms/chatrooms.component';
9
10 @NgModule({
11   declarations: [
12     AppComponent,
13     ChatroomsComponent
14   ],
15   imports: [
16     BrowserModule,
17     FormsModule,
18     HttpClientModule,
19     AppRoutingModule
20   ],
21   providers: [],
22   bootstrap: [AppComponent]
23 })
24 export class AppModule { }