import { Components, registerComponent } from 'meteor/vulcan:lib';
import React from 'react';
import Button from 'react-bootstrap/lib/Button';
import { FormattedMessage, intlShape } from 'meteor/vulcan:i18n';
const NewButton = ({ collection, bsStyle = 'primary', ...props }, {intl}) =>
}
>
NewButton.contextTypes = {
intl: intlShape
};
NewButton.displayName = 'NewButton';
registerComponent('NewButton', NewButton);
/*
NewForm Component
*/
const NewForm = ({ collection, closeModal, options, ...props }) =>
{
closeModal();
}}
/>
registerComponent('NewForm', NewForm);