import React from 'react'; import styled from 'styled-components'; import TreeNodeRenderer from '@app/homeV3/modules/hierarchyViewModule/treeView/TreeNodeRenderer'; import useTreeViewContext from '@app/homeV3/modules/hierarchyViewModule/treeView/context/useTreeViewContext'; const Wrapper = styled.div` display: flex; flex-direction: column; width: 100%; `; export default function TreeNodesRenderer() { const { nodes } = useTreeViewContext(); return ( {nodes.map((node) => ( ))} ); }