import React, {Component, PropTypes} from 'react'; import CommentBox from '../coral-plugin-commentbox/CommentBox'; const name = 'coral-plugin-replies'; class ReplyBox extends Component { componentDidMount() { document.getElementById('replyText').focus(); } render() { const { styles, postItem, assetId, authorId, addNotification, parentId, commentPostedHandler, setActiveReplyBox, maxCharCount, charCountEnable } = this.props; return
; } } ReplyBox.propTypes = { charCountEnable: PropTypes.bool.isRequired, maxCharCount: PropTypes.number, setActiveReplyBox: PropTypes.func.isRequired, commentPostedHandler: PropTypes.func, parentId: PropTypes.string, addNotification: PropTypes.func.isRequired, authorId: PropTypes.string.isRequired, postItem: PropTypes.func.isRequired, assetId: PropTypes.string.isRequired }; export default ReplyBox;