import React from 'react'; import { AppRegistry } from 'react-native'; import { Provider } from 'react-redux'; import { createStore, applyMiddleware } from 'redux'; import AppReducer from './src/reducers'; import AppWithNavigationState from './src/navigators/AppNavigator'; import { middleware } from './src/utils/redux'; const store = createStore( AppReducer, applyMiddleware(middleware), ); class ReduxExampleApp extends React.Component { render() { return ( ); } } AppRegistry.registerComponent('ReduxExample', () => ReduxExampleApp); export default ReduxExampleApp;