d97a23b699
I believe it was just due to copy/pasting from another file and not renaming it.
11 lines
389 B
JavaScript
11 lines
389 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectUnseenNotificationCount } from 'redux/selectors/notifications';
|
|
import { selectUser } from 'redux/selectors/user';
|
|
import NotificationHeaderButton from './view';
|
|
|
|
const select = (state) => ({
|
|
unseenCount: selectUnseenNotificationCount(state),
|
|
user: selectUser(state),
|
|
});
|
|
|
|
export default connect(select)(NotificationHeaderButton);
|