1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-13 20:08:56 +00:00

modals container eslint fix

This commit is contained in:
Szymon Lesisz 2018-12-05 15:10:38 +01:00
parent d7e0fb91cd
commit f4985c0b7c

View File

@ -11,7 +11,7 @@ import type { State, Dispatch } from 'flowtype';
import Modal from './index';
type OwnProps = { }
type OwnProps = {};
type StateProps = {
modal: $ElementType<State, 'modal'>,
@ -24,12 +24,12 @@ type StateProps = {
receive: $ElementType<State, 'receive'>,
localStorage: $ElementType<State, 'localStorage'>,
wallet: $ElementType<State, 'wallet'>,
}
};
type DispatchProps = {
modalActions: typeof ModalActions,
receiveActions: typeof ReceiveActions,
}
};
export type Props = StateProps & DispatchProps;