Sha256: 595d547bd1151f40270ce1b96fc4652f14ab7c3c1b610a93c767d32feca9148c
Contents?: true
Size: 439 Bytes
Versions: 3
Compression:
Stored size: 439 Bytes
Contents
import {bindActionCreators} from 'redux' import {connect} from 'react-redux' import layout from './layout' import * as InventoryActions from '../../../../actions/InventoryActions' function mapStateToProps(state) { return { storages: state.inventory.storages } } function mapDispatchToProps(dispatch) { return bindActionCreators(InventoryActions, dispatch) } export default connect(mapStateToProps, mapDispatchToProps)(layout)
Version data entries
3 entries across 3 versions & 1 rubygems