aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-header/send-header.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_/send-header/send-header.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_/send-header/send-header.container.js')
-rw-r--r--ui/app/components/send_/send-header/send-header.container.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/ui/app/components/send_/send-header/send-header.container.js b/ui/app/components/send_/send-header/send-header.container.js
new file mode 100644
index 000000000..4bcd0d1b6
--- /dev/null
+++ b/ui/app/components/send_/send-header/send-header.container.js
@@ -0,0 +1,19 @@
+import { connect } from 'react-redux'
+import { clearSend } from '../../../actions'
+import SendHeader from './send-header.component'
+import { getSubtitleParams, getTitleKey } from './send-header.selectors'
+
+export default connect(mapStateToProps, mapDispatchToProps)(SendHeader)
+
+function mapStateToProps (state) {
+ return {
+ titleKey: getTitleKey(state),
+ subtitleParams: getSubtitleParams(state),
+ }
+}
+
+function mapDispatchToProps (dispatch) {
+ return {
+ clearSend: () => dispatch(clearSend()),
+ }
+}