feat(components): add ReactFlowProvider #275

This commit is contained in:
moklick
2020-06-02 18:34:02 +02:00
parent 3f3a79b5f6
commit 5cbeda5c3f
12 changed files with 166 additions and 34 deletions
+7 -3
View File
@@ -11,6 +11,7 @@ import Empty from './Empty';
import Edges from './Edges';
import Validation from './Validation';
import Horizontal from './Horizontal';
import Provider from './Provider';
import './index.css';
@@ -19,9 +20,9 @@ const routes = [{
component: Overview,
label: 'Overview'
}, {
path: '/basic',
component: Basic,
label: 'Basic'
path: '/provider',
component: Provider,
label: 'Provider'
}, {
path: '/edges',
component: Edges,
@@ -42,6 +43,9 @@ const routes = [{
path: '/stress',
component: Stress,
label: 'Stress'
}, {
path: '/basic',
component: Basic
}, {
path: '/empty',
component: Empty