We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 591f103 commit 9118f87Copy full SHA for 9118f87
client/app/components/RouterCommentScreen.jsx
@@ -3,20 +3,13 @@ import CommentScreen from './CommentScreen';
3
import { connect } from 'react-redux';
4
import { bindActionCreators } from 'redux';
5
import * as commentsActionCreators from '../actions/commentsActionCreators';
6
-import _ from 'lodash';
7
8
function select(state) {
9
// Which part of the Redux global state does our component want to receive as props?
10
return { data: state.$$commentsStore };
11
}
12
13
class RouterCommentScreen extends React.Component {
14
- constructor(props, context) {
15
- super(props, context);
16
-
17
- _.bindAll(this, '_renderNotification');
18
- }
19
20
static propTypes = {
21
dispatch: PropTypes.func.isRequired,
22
data: PropTypes.object.isRequired,
0 commit comments