// jshint esversion: 6 import React from "react"; import _ from "lodash"; import Categorical from "./categorical/categorical"; import Continuous from "./continuous/continuous"; import ExpressionButtons from "./expression/expressionButtons"; import { connect } from "react-redux"; import Heatmap from "./expression/diffExpHeatmap"; import * as globals from "../globals"; import DynamicScatterplot from "./scatterplot/scatterplot"; @connect(state => { return { responsive: state.responsive }; }) class LeftSideBar extends React.Component { constructor(props) { super(props); this.metadataSectionPadding = 300; this.state = { currentTab: "metadata" }; } render() { return (

CELLxGENE {globals.datasetTitle}{" "}

{this.state.currentTab === "metadata" ? : null} {this.state.currentTab === "metadata" ? : null} {this.state.currentTab === "expression" ? : null}
{this.state.currentTab === "metadata" ? : null} {this.state.currentTab === "expression" ? ( ) : null}
); } } export default LeftSideBar;