feat: Renamed app, added styles from the heroes-tutorial
[demos/kafka/chat] / src / app / app.module.ts
1 import { NgModule } from '@angular/core';
2 import { BrowserModule } from '@angular/platform-browser';
3
4 import { AppRoutingModule } from './app-routing.module';
5 import { AppComponent } from './app.component';
6 import { ChatroomsComponent } from './chatrooms/chatrooms.component';
7
8 @NgModule({
9   declarations: [
10     AppComponent,
11     ChatroomsComponent
12   ],
13   imports: [
14     BrowserModule,
15     AppRoutingModule
16   ],
17   providers: [],
18   bootstrap: [AppComponent]
19 })
20 export class AppModule { }