import React, { Component } from "react"; import ConversationContext from "../Components/Conversation/context"; import { MessageWrap } from "../Service/Model"; export interface MessageBaseCellProps { message: MessageWrap context: ConversationContext } class MessageBaseCellPropsImp implements MessageBaseCellProps { message!: MessageWrap; context!: ConversationContext } export class MessageBaseCell

extends Component { } export class MessageCell

extends MessageBaseCell { componentDidMount(): void { } render() { return

MessageCell
} }