X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=blobdiff_plain;f=skyquake%2Fplugins%2Fredundancy%2Fsrc%2Fdashboard%2Futils%2Futils.js;fp=skyquake%2Fplugins%2Fredundancy%2Fsrc%2Fdashboard%2Futils%2Futils.js;h=7c13f05022fe17e8101910882a913587cb963457;hp=0000000000000000000000000000000000000000;hb=03156e335275de1dafbc2a816e98006afdf249bf;hpb=f2dc2462571800e62cba969964de621dca09299c diff --git a/skyquake/plugins/redundancy/src/dashboard/utils/utils.js b/skyquake/plugins/redundancy/src/dashboard/utils/utils.js new file mode 100644 index 000000000..7c13f0502 --- /dev/null +++ b/skyquake/plugins/redundancy/src/dashboard/utils/utils.js @@ -0,0 +1,14 @@ +import Input from 'widgets/form_controls/input.jsx'; + +var componentMap = { + leaf: { + component: 'input' + } +} + +function buildFormElements (schema, onChange) { + var elements = []; + schema.map(function(s, i) { + + }) +}