import React, { PropTypes, Component } from 'react'; import Actions from '../actions.js'; import NovaForm from "meteor/nova:forms"; class CommentsEdit extends Component { render() { return (
) } } CommentsEdit.propTypes = { comment: React.PropTypes.object.isRequired, successCallback: React.PropTypes.func, cancelCallback: React.PropTypes.func } CommentsEdit.contextTypes = { currentUser: React.PropTypes.object } module.exports = CommentsEdit;