mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 04:56:40 -04:00
13 lines
328 B
React
13 lines
328 B
React
![]() |
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import { registerComponent } from 'meteor/vulcan:core';
|
||
|
|
||
|
const FormNestedDivider = ({ label, addItem }) => <div/>;
|
||
|
|
||
|
FormNestedDivider.propTypes = {
|
||
|
label: PropTypes.string,
|
||
|
addItem: PropTypes.func,
|
||
|
};
|
||
|
|
||
|
registerComponent('FormNestedDivider', FormNestedDivider);
|