feat(elements): add isHidden option

This commit is contained in:
moklick
2020-07-15 10:31:16 +02:00
parent 084030dbb2
commit b51a25191f
12 changed files with 129 additions and 13 deletions
+8 -3
View File
@@ -12,6 +12,7 @@ import Edges from './Edges';
import Validation from './Validation';
import Horizontal from './Horizontal';
import Provider from './Provider';
import Hidden from './Hidden';
import './index.css';
@@ -51,6 +52,11 @@ const routes = [
component: Stress,
label: 'Stress',
},
{
path: '/interaction',
component: Interaction,
label: 'Interaction',
},
{
path: '/basic',
component: Basic,
@@ -60,9 +66,8 @@ const routes = [
component: Empty,
},
{
path: '/interaction',
component: Interaction,
label: 'Interaction',
path: '/hidden',
component: Hidden,
},
];