/** * Harness for the entire log view. */ import React, { PureComponent } from "react"; import LeftPanel from "./leftPanel/LeftPanel"; import RightPanel from "./rightPanel/RightPanel"; interface IProps { clientListVisible: boolean; fileMode?: boolean; } class LogView extends PureComponent { render() { return (
{this.props.clientListVisible ? : }
); } } export default LogView;