feat: The available chatrooms are fetched and displayed in a component
[demos/kafka/chat] / src / app / chatroom.ts
1 export interface Chatroom
2 {
3   id: string,
4   name: string
5 }