blob: 42c81c654a8f4cbb3279d350d6b8fa1ebf7fb3d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import React from 'react'
import { useSelector } from 'react-redux'
import TopologySidebarComponent from '../../../../components/app/sidebars/topology/TopologySidebarComponent'
const TopologySidebarContainer = (props) => {
const interactionLevel = useSelector((state) => state.interactionLevel)
return <TopologySidebarComponent {...props} interactionLevel={interactionLevel} />
}
export default TopologySidebarContainer
|