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