import { connect } from 'react-redux'; import Comment from './view'; const select = (state, props) => ({}); const perform = dispatch => ({}); export default connect(select, perform)(Comment);