You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/views/Wallet/views/Import/Container.js

36 lines
1.0 KiB

6 years ago
/* @flow */
import * as React from 'react';
6 years ago
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import * as ImportAccountActions from 'actions/ImportAccountActions';
import type { State, Dispatch } from 'flowtype';
import ImportView from './index';
5 years ago
type OwnProps = {|
children?: React.Node,
5 years ago
|};
export type StateProps = {|
importAccount: $ElementType<State, 'importAccount'>,
5 years ago
|};
5 years ago
type DispatchProps = {|
importAddress: typeof ImportAccountActions.importAddress,
5 years ago
|};
5 years ago
export type Props = {| ...OwnProps, ...StateProps, ...DispatchProps |};
6 years ago
5 years ago
const mapStateToProps = (state: State): StateProps => ({
5 years ago
config: state.localStorage.config,
device: state.wallet.selectedDevice,
importAccount: state.importAccount,
});
6 years ago
5 years ago
const mapDispatchToProps = (dispatch: Dispatch): DispatchProps => ({
importAddress: bindActionCreators(ImportAccountActions.importAddress, dispatch),
});
6 years ago
5 years ago
export default connect<Props, OwnProps, StateProps, DispatchProps, State, Dispatch>(
5 years ago
mapStateToProps,
mapDispatchToProps
)(ImportView);