import { Components, registerComponent, getFragment, withMessages } from 'meteor/vulcan:core'; import React, { PropTypes, Component } from 'react'; import Comments from "meteor/vulcan:comments"; const CommentsEditForm = (props, context) => { return (
) } CommentsEditForm.propTypes = { comment: React.PropTypes.object.isRequired, successCallback: React.PropTypes.func, cancelCallback: React.PropTypes.func }; registerComponent('CommentsEditForm', CommentsEditForm, withMessages);