|
|
@ -72,6 +72,7 @@ class CreatePasswordScreen extends Component { |
|
|
|
> |
|
|
|
> |
|
|
|
Create |
|
|
|
Create |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
|
|
|
|
{ /* } |
|
|
|
<a |
|
|
|
<a |
|
|
|
href="" |
|
|
|
href="" |
|
|
|
className="first-time-flow__link create-password__import-link" |
|
|
|
className="first-time-flow__link create-password__import-link" |
|
|
@ -82,6 +83,7 @@ class CreatePasswordScreen extends Component { |
|
|
|
> |
|
|
|
> |
|
|
|
Import an account |
|
|
|
Import an account |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
|
|
|
|
{ */ } |
|
|
|
<Breadcrumbs total={3} currentIndex={0} /> |
|
|
|
<Breadcrumbs total={3} currentIndex={0} /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
) |
|
|
|
) |
|
|
@ -91,6 +93,6 @@ class CreatePasswordScreen extends Component { |
|
|
|
export default connect( |
|
|
|
export default connect( |
|
|
|
({ appState: { isLoading } }) => ({ isLoading }), |
|
|
|
({ appState: { isLoading } }) => ({ isLoading }), |
|
|
|
dispatch => ({ |
|
|
|
dispatch => ({ |
|
|
|
createAccount: password => dispatch(createNewVaultAndKeychain(password)) |
|
|
|
createAccount: password => dispatch(createNewVaultAndKeychain(password)), |
|
|
|
}) |
|
|
|
}) |
|
|
|
)(CreatePasswordScreen) |
|
|
|
)(CreatePasswordScreen) |
|
|
|