1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-11 16:41:06 +00:00

Rename import

This commit is contained in:
Vasek Mlejnsky 2018-08-31 12:37:40 +02:00
parent 763422de8a
commit 3a6b99aef1

View File

@ -10,7 +10,7 @@ import * as SessionStorageActions from 'actions/SessionStorageActions';
import type { MapStateToProps, MapDispatchToProps } from 'react-redux';
import type { State, Dispatch } from 'flowtype';
import type { StateProps as BaseStateProps, DispatchProps as BaseDispatchProps } from 'views/Wallet/components/SelectedAccount';
import SendForm from './index';
import AccountSend from './index';
type OwnProps = { }
@ -44,4 +44,4 @@ const mapDispatchToProps: MapDispatchToProps<Dispatch, OwnProps, DispatchProps>
saveSessionStorage: bindActionCreators(SessionStorageActions.save, dispatch),
});
export default connect(mapStateToProps, mapDispatchToProps)(SendForm);
export default connect(mapStateToProps, mapDispatchToProps)(AccountSend);