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