Importing vanillin from upstream ;) ;)

This commit is contained in:
kibigo!
2017-07-12 01:10:17 -07:00
parent 297921fce5
commit bcf7ee48e9
9 changed files with 1407 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { connect } from 'react-redux';
import { makeGetNotification } from '../../../selectors';
import Notification from '../components/notification';
const makeMapStateToProps = () => {
const getNotification = makeGetNotification();
const mapStateToProps = (state, props) => ({
notification: getNotification(state, props.notification, props.accountId),
});
return mapStateToProps;
};
export default connect(makeMapStateToProps)(Notification);