aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/first-time-flow/create-password/create-password.container.js
blob: 89106f0168cf74415d120a4621eb2488169a627e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { connect } from 'react-redux'
import CreatePassword from './create-password.component'

const mapStateToProps = state => {
  const { metamask: { isInitialized } } = state

  return {
    isInitialized,
  }
}

export default connect(mapStateToProps)(CreatePassword)