mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
394 B
JavaScript
11 lines
394 B
JavaScript
import React from 'react';
|
|
import Form from 'react-bootstrap/lib/Form';
|
|
import { Components, registerComponent } from 'meteor/vulcan:core';
|
|
|
|
const UrlComponent = ({ refFunction, inputProperties, ...properties }) => (
|
|
<Components.FormItem>
|
|
<Form.Control ref={refFunction} {...inputProperties} type="url" />
|
|
</Components.FormItem>
|
|
);
|
|
|
|
registerComponent('FormComponentUrl', UrlComponent);
|