Vulcan/packages/vulcan-ui-bootstrap/lib/components/forms/Url.jsx

7 lines
318 B
React
Raw Normal View History

import React from 'react';
import { Input } from 'formsy-react-components';
import { registerComponent } from 'meteor/vulcan:core';
2018-03-26 17:50:03 +09:00
const UrlComponent = ({refFunction, inputProperties, ...properties}) => <Input ref={refFunction} {...inputProperties} type="url" />
registerComponent('FormComponentUrl', UrlComponent);