// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. // See License.txt for license information. var UserProfile = require('./user_profile.jsx'); var PostInfo = require('./post_info.jsx'); export default class PostHeader extends React.Component { constructor(props) { super(props); this.state = {}; } render() { var post = this.props.post; return ( ); } } PostHeader.defaultProps = { post: null, commentCount: 0, isLastComment: false }; PostHeader.propTypes = { post: React.PropTypes.object, commentCount: React.PropTypes.number, isLastComment: React.PropTypes.bool, handleCommentClick: React.PropTypes.func };