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