1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-05 14:22:35 +00:00
trezor-wallet/src/components/Header/components/LanguagePicker/Container.js
2019-04-10 17:50:07 +02:00

34 lines
860 B
JavaScript

/* @flow */
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import * as WalletActions from 'actions/WalletActions';
import type { State, Dispatch } from 'flowtype';
import LanguagePicker from './index';
type StateProps = {|
language: string,
|};
type DispatchProps = {|
fetchLocale: typeof WalletActions.fetchLocale,
|};
type OwnProps = {||};
export type Props = {| ...StateProps, ...DispatchProps, ...OwnProps |};
const mapStateToProps = (state: State): StateProps => ({
language: state.wallet.language,
});
const mapDispatchToProps = (dispatch: Dispatch): DispatchProps => ({
fetchLocale: bindActionCreators(WalletActions.fetchLocale, dispatch),
});
export default connect<Props, OwnProps, StateProps, DispatchProps, State, Dispatch>(
mapStateToProps,
mapDispatchToProps
)(LanguagePicker);