chore(examples): add edge types example

This commit is contained in:
moklick
2020-07-21 16:33:38 +02:00
parent 4934cec6c9
commit d40c74e54c
3 changed files with 165 additions and 0 deletions
+5
View File
@@ -13,6 +13,7 @@ import Validation from './Validation';
import Horizontal from './Horizontal';
import Provider from './Provider';
import Hidden from './Hidden';
import EdgeTypes from './EdgeTypes';
import './index.css';
@@ -69,6 +70,10 @@ const routes = [
path: '/hidden',
component: Hidden,
},
{
path: '/edge-types',
component: EdgeTypes,
},
];
const navLinks = routes.filter((route) => route.label);