import React from 'react'; interface Props{}; interface State{}; export class SessionConversation extends React.Component { public constructor(props: Props) { super(props); this.state = {}; } render() { return (
THIS IS AN INBOX VIEW
) } }