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/js/components/landing/index.js

47 lines
1.0 KiB

/* @flow */
'use strict';
import React from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import LandingPage from './LandingPage';
import type { MapStateToProps, MapDispatchToProps } from 'react-redux';
import type { State, Dispatch } from '../../flowtype';
export type Props = {
localStorage: any,
modal: any,
web3: any,
wallet: any,
connect: any,
router: any
}
type DispatchProps = {
foo: () => string
}
type OwnProps = {
}
const mapStateToProps: MapStateToProps<State, OwnProps, Props> = (state: State): Props => {
return {
localStorage: state.localStorage,
modal: state.modal,
web3: state.web3,
wallet: state.wallet,
connect: state.connect,
router: state.router
};
}
const mapDispatchToProps: MapDispatchToProps<Dispatch, OwnProps, DispatchProps> = (dispatch: Dispatch) => {
return {
foo: ():string => { return "A"; }
};
}
export default connect(mapStateToProps, null)(LandingPage);