Vulcan/packages/vulcan-ui-bootstrap/lib/components/forms/Checkboxgroup.jsx
Erik Schannen 150d9392e7 Changes to SmartForm behaviour - refactoring
- Added new `FormComponent.isCustomInput` method
 - Pulled `renderComponent` up from `FormComponentInner` to `FormComponent`
 - Pulled some input-type-specific logic up when it was universal, or pushed it down when it should be handled by each ui library
2018-05-10 10:03:59 -04:00

8 lines
343 B
JavaScript

import React from 'react';
import { CheckboxGroup } from 'formsy-react-components';
import { registerComponent } from 'meteor/vulcan:core';
const CheckboxGroupComponent = ({refFunction, inputProperties}) =>
<CheckboxGroup {...inputProperties} ref={refFunction} />;
registerComponent('FormComponentCheckboxGroup', CheckboxGroupComponent);