mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00

- 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
8 lines
318 B
JavaScript
8 lines
318 B
JavaScript
import React from 'react';
|
|
import { Checkbox } from 'formsy-react-components';
|
|
import { registerComponent } from 'meteor/vulcan:core';
|
|
|
|
const CheckboxComponent = ({refFunction, inputProperties}) =>
|
|
<Checkbox {...inputProperties} ref={refFunction} />;
|
|
|
|
registerComponent('FormComponentCheckbox', CheckboxComponent);
|