summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/sidebars/topology/TopologySidebar.js
blob: 31c902fc9e6bd7c4498a61b95991847edfc164e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { connect } from "react-redux";
import TopologySidebarComponent from "../../../../components/app/sidebars/topology/TopologySidebarComponent";

const mapStateToProps = state => {
  return {
    interactionLevel: state.interactionLevel
  };
};

const TopologySidebar = connect(mapStateToProps)(TopologySidebarComponent);

export default TopologySidebar;