import React from 'react'; import { Components, registerComponent } from 'meteor/vulcan:core'; const parseUrl = value => { return value && value.toString().slice(0, 4) === 'http' ? ( {value} ) : ( value ); }; const StaticComponent = ({ inputProperties, itemProperties }) => (
{parseUrl(inputProperties.value)}
); registerComponent('FormComponentStaticText', StaticComponent);