feat: Added a chatroom component, that is navigatable by the chatroom's ID
[demos/kafka/chat] / src / app / chatroom.ts
1 export interface Chatroom
2 {
3   id: string,
4   name: string
5 }