class ChatRoom { public ChatRoom(topic, peers) { this.topic = topic; this.peers = peers; } } export default ChatRoom;