import React from 'react'; import { intlShape } from 'meteor/vulcan:i18n'; import Form from 'react-bootstrap/lib/Form'; import { Components, registerComponent } from 'meteor/vulcan:core'; const SelectMultipleComponent = ({refFunction, inputProperties, ...properties}, { intl }) => { inputProperties.multiple = true; return ; }; SelectMultipleComponent.contextTypes = { intl: intlShape, }; registerComponent('FormComponentSelectMultiple', SelectMultipleComponent);