chore(react): add addNodeOnEdgeDrop example

This commit is contained in:
moklick
2024-02-28 10:25:20 +01:00
parent e5c667d068
commit aead13f485
2 changed files with 105 additions and 0 deletions
+6
View File
@@ -49,6 +49,7 @@ import UseConnection from '../examples/UseConnection';
import UseNodesInitialized from '../examples/UseNodesInit';
import UseNodesData from '../examples/UseNodesData';
import UseHandleConnections from '../examples/UseHandleConnections';
import AddNodeOnEdgeDrop from '../examples/AddNodeOnEdgeDrop';
export interface IRoute {
name: string;
@@ -57,6 +58,11 @@ export interface IRoute {
}
const routes: IRoute[] = [
{
name: 'Add Node on edge Drop',
path: 'add-node-edge-drop',
component: AddNodeOnEdgeDrop,
},
{
name: 'Basic',
path: 'basic',