refactor(nodes): only use node internals

This commit is contained in:
moklick
2021-11-18 13:01:11 +01:00
parent f0e79c634a
commit 0974aa5732
21 changed files with 171 additions and 151 deletions
+5
View File
@@ -9,6 +9,7 @@ import CustomNode from './CustomNode';
import FloatingEdges from './FloatingEdges';
import Layouting from './Layouting';
import NestedNodes from './NestedNodes';
import Hidden from './Hidden';
import './index.css';
@@ -41,6 +42,10 @@ const routes = [
path: '/nested-nodes',
component: NestedNodes,
},
{
path: '/hidden',
component: Hidden,
},
];
const Header = withRouter(({ history, location }) => {