import {Registry, RegistryMap} from "tc-shared/events"; import {ConversationUIEvents} from "tc-shared/ui/frames/side/ConversationDefinitions"; import {ConversationPanel} from "./AbstractConversationRenderer"; import * as React from "react"; import {AbstractModal} from "tc-shared/ui/react-elements/ModalDefinitions"; class PopoutConversationRenderer extends AbstractModal { private readonly events: Registry; private readonly userData: any; constructor(registryMap: RegistryMap, userData: any) { super(); this.userData = userData; this.events = registryMap["default"] as any; } renderBody() { return ; } title() { return "Conversations"; } } export = PopoutConversationRenderer;