feat(packages): add interactive minimap

This commit is contained in:
moklick
2022-10-09 19:55:25 +02:00
parent 4aa742f6f2
commit d057a1cd34
14 changed files with 527 additions and 49 deletions
+6
View File
@@ -36,6 +36,7 @@ import Validation from '../examples/Validation';
import UseKeyPress from '../examples/UseKeyPress';
import EdgeRouting from '../examples/EdgeRouting';
import CancelConnection from '../examples/CancelConnection';
import InteractiveMinimap from '../examples/InteractiveMinimap';
interface IRoute {
name: string;
@@ -124,6 +125,11 @@ const routes: IRoute[] = [
path: '/interaction',
component: Interaction,
},
{
name: 'Interactive Minimap',
path: '/interactive-minimap',
component: InteractiveMinimap,
},
{
name: 'Layouting',
path: '/layouting',