import React from 'react'; import { registerComponent } from 'meteor/vulcan:core'; const StaticComponent = ({ value, label }) => (
{value}
); registerComponent('FormComponentStaticText', StaticComponent);