aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/first-time-flow/end-of-flow/end-of-flow.container.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pages/first-time-flow/end-of-flow/end-of-flow.container.js')
-rw-r--r--ui/app/components/pages/first-time-flow/end-of-flow/end-of-flow.container.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui/app/components/pages/first-time-flow/end-of-flow/end-of-flow.container.js b/ui/app/components/pages/first-time-flow/end-of-flow/end-of-flow.container.js
new file mode 100644
index 000000000..ffe2c0efb
--- /dev/null
+++ b/ui/app/components/pages/first-time-flow/end-of-flow/end-of-flow.container.js
@@ -0,0 +1,11 @@
+import { connect } from 'react-redux'
+import EndOfFlow from './end-of-flow.component'
+import { setCompletedOnboarding } from '../../../../actions'
+
+const mapDispatchToProps = dispatch => {
+ return {
+ completeOnboarding: () => dispatch(setCompletedOnboarding()),
+ }
+}
+
+export default connect(null, mapDispatchToProps)(EndOfFlow)