// jshint esversion: 6 import React from "react"; import { connect } from "react-redux"; import { Button } from "@blueprintjs/core"; import { IconNames } from "@blueprintjs/icons"; import * as globals from "../../globals"; import Logo from "../framework/logo"; import Truncate from "../util/truncate"; import InfoDrawer from "../infoDrawer/infoDrawer"; const DATASET_TITLE_FONT_SIZE = 14; @connect((state) => ({ datasetTitle: state.config?.displayNames?.dataset ?? "", })) class LeftSideBar extends React.Component { handleClick = () => { const { dispatch } = this.props; dispatch({ type: "toggle dataset drawer" }); }; render() { const { datasetTitle } = this.props; return (
cell × gene
); } } export default LeftSideBar;