mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
14 lines
383 B
React
14 lines
383 B
React
![]() |
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import { registerComponent } from 'meteor/vulcan:core';
|
||
|
import { FormattedMessage } from 'meteor/vulcan:i18n';
|
||
|
|
||
|
const FormNestedDivider = ({ label, addItem }) => <div/>;
|
||
|
|
||
|
FormNestedDivider.propTypes = {
|
||
|
label: PropTypes.string,
|
||
|
addItem: PropTypes.func,
|
||
|
};
|
||
|
|
||
|
registerComponent('FormNestedDivider', FormNestedDivider);
|