// 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'); module.exports = React.createClass({ getInitialState: function() { return { }; }, render: function() { var post = this.props.post; return ( ); } });