Sha256: a3107d13b3ea301cd16635fe8e119e59092b98b57c0812b06ce0205ab737a871

Contents?: true

Size: 421 Bytes

Versions: 3

Compression:

Stored size: 421 Bytes

Contents

import {bindActionCreators} from 'redux'
import {connect} from 'react-redux'
import layout from './layout'
import * as AccountActions from '../../../../actions/AccountActions'

function mapStateToProps(state) {
  return {
    account: state.account
  }
}

function mapDispatchToProps(dispatch) {
  return bindActionCreators(AccountActions, dispatch)
}

export default connect(mapStateToProps, mapDispatchToProps)(layout)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bouquet-0.2.2 store/private/static/app/components/layouts/contents/account/index.js
bouquet-0.2.1 store/private/static/app/components/layouts/contents/account/index.js
bouquet-0.2.0 store/private/static/app/components/layouts/contents/account/index.js