blob: 1909443aec0fc7f3afc7fccca7f792aa42580e95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import {connect} from "react-redux";
import TopologySidebarComponent from "../../components/sidebars/TopologySidebarComponent";
const mapStateToProps = state => {
return {
interactionLevel: state.interactionLevel
};
};
const TopologySidebar = connect(
mapStateToProps
)(TopologySidebarComponent);
export default TopologySidebar;
|