refactor(edges): create index for all edge types

This commit is contained in:
moklick
2020-07-14 09:54:39 +02:00
parent 152acbe70a
commit dec1f973cb
3 changed files with 6 additions and 8 deletions
+1 -4
View File
@@ -1,9 +1,6 @@
import { ComponentType } from 'react';
import StraightEdge from '../../components/Edges/StraightEdge';
import BezierEdge from '../../components/Edges/BezierEdge';
import StepEdge from '../../components/Edges/StepEdge';
import SmoothStepEdge from '../../components/Edges/SmoothStepEdge';
import { BezierEdge, StepEdge, SmoothStepEdge, StraightEdge } from '../../components/Edges';
import wrapEdge from '../../components/Edges/wrapEdge';
import { EdgeTypesType, EdgeCompProps } from '../../types';