From 890cd3f7028bfccd77b0d04670f7bc07293ed383 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Tue, 7 Jul 2020 11:20:43 +0200 Subject: Add new left sidebar, move topology controls --- .../app/sidebars/topology/TopologySidebarContainer.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 frontend/src/containers/app/sidebars/topology/TopologySidebarContainer.js (limited to 'frontend/src/containers/app/sidebars/topology/TopologySidebarContainer.js') diff --git a/frontend/src/containers/app/sidebars/topology/TopologySidebarContainer.js b/frontend/src/containers/app/sidebars/topology/TopologySidebarContainer.js new file mode 100644 index 00000000..f9bc10bf --- /dev/null +++ b/frontend/src/containers/app/sidebars/topology/TopologySidebarContainer.js @@ -0,0 +1,12 @@ +import { connect } from 'react-redux' +import TopologySidebarComponent from '../../../../components/app/sidebars/topology/TopologySidebarComponent' + +const mapStateToProps = state => { + return { + interactionLevel: state.interactionLevel, + } +} + +const TopologySidebarContainer = connect(mapStateToProps)(TopologySidebarComponent) + +export default TopologySidebarContainer -- cgit v1.2.3