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/Account/Summary/index.js

32 lines
795 B

/* @flow */
import React from 'react';
import { connect } from 'react-redux';
import type { State } from 'flowtype';
import EthereumTypeSummary from './ethereum/Container';
import RippleTypeSummary from './ripple/Container';
type WrapperProps = {
selectedAccount: $ElementType<State, 'selectedAccount'>,
};
// return container for requested network type
export default connect(
(state: State): WrapperProps => ({
selectedAccount: state.selectedAccount,
}),
null
)(props => {
const { network } = props.selectedAccount;
if (!network) return null;
switch (network.type) {
case 'ethereum':
return <EthereumTypeSummary />;
case 'ripple':
return <RippleTypeSummary />;
default:
return null;
}
});