aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/account-list-item/account-list-item.container.js
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2018-06-07 11:20:16 +0800
committerGitHub <noreply@github.com>2018-06-07 11:20:16 +0800
commit988283778a2be52640b27a359ef3fb1130e95711 (patch)
treef62576fb7e1a9088cef9bb1137745192bd571539 /ui/app/components/send_/account-list-item/account-list-item.container.js
parentc86213bf118c0d9d0356a36e6ca0e9e884a82d73 (diff)
parenta09d609360f5f916e75e98254fb82ce8f3f42d35 (diff)
downloadtangerine-wallet-browser-988283778a2be52640b27a359ef3fb1130e95711.tar.gz
tangerine-wallet-browser-988283778a2be52640b27a359ef3fb1130e95711.tar.zst
tangerine-wallet-browser-988283778a2be52640b27a359ef3fb1130e95711.zip
Merge pull request #4090 from MetaMask/i3725-refactor-send-component-
I3725 Refactor Send Component
Diffstat (limited to 'ui/app/components/send_/account-list-item/account-list-item.container.js')
-rw-r--r--ui/app/components/send_/account-list-item/account-list-item.container.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/ui/app/components/send_/account-list-item/account-list-item.container.js b/ui/app/components/send_/account-list-item/account-list-item.container.js
new file mode 100644
index 000000000..3151b1f1d
--- /dev/null
+++ b/ui/app/components/send_/account-list-item/account-list-item.container.js
@@ -0,0 +1,15 @@
+import { connect } from 'react-redux'
+import {
+ getConversionRate,
+ getConvertedCurrency,
+} from '../send.selectors.js'
+import AccountListItem from './account-list-item.component'
+
+export default connect(mapStateToProps)(AccountListItem)
+
+function mapStateToProps (state) {
+ return {
+ conversionRate: getConversionRate(state),
+ currentCurrency: getConvertedCurrency(state),
+ }
+}