create comment history class

This commit is contained in:
Riley Davis
2016-11-23 13:28:20 -07:00
parent 78f751344a
commit 71d4ddf030
@@ -0,0 +1,20 @@
import React from 'react';
import {connect} from 'react-redux';
const mapStateToProps = state => {
return {
config: state.config.toJS(),
items: state.items.toJS(),
auth: state.auth.toJS()
};
};
class CommentHistory extends React.Component {
render () {
return (
<div>Comment History</div>
);
}
}
export default connect(mapStateToProps)(CommentHistory);