我无法在ios上运行react-native应用程序,因为未提供商店。虽然我在代码中创建并提供商店
import React from 'react';
import { AppRegistry } from 'react-native';
import { Provider } from 'react-redux';
import App from './App';
import configureStore from './src/store/configureStore';
const store = configureStore();
const RNRedux = () => (
<Provider store={store}>
<App />
</Provider>
);
AppRegistry.registerComponent('rncourse', () => RNRedux);