react-native-template-allmax
Version:
React native template with navigation, redux, redux-saga, eslit, flow, reactotron
19 lines (12 loc) • 359 B
JavaScript
// @flow
import { connect } from 'react-redux';
import { onAppStart } from '~/redux/actionCreators';
import type { ConnectingActionCreators } from './types';
import { UnconnectedApp } from './component';
const mapDispatchToProps: ConnectingActionCreators = {
onAppStart,
};
export const App = connect(
null,
mapDispatchToProps,
)(UnconnectedApp);