summaryrefslogtreecommitdiff
path: root/frontend/src/containers/app/sidebars/topology/TopologySidebarContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/app/sidebars/topology/TopologySidebarContainer.js')
-rw-r--r--frontend/src/containers/app/sidebars/topology/TopologySidebarContainer.js12
1 files changed, 12 insertions, 0 deletions
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