1

AppRegistry.registerComponent(appName, () => App);

/**
 * @format
 */

import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';

AppRegistry.registerComponent(appName, () => App);

i cant find out how can i pull in it?

1 Answers1

0

In App.js

<Provider store={store}>
 ...Your App
</Provider>
Arthur Arakelyan
  • 164
  • 1
  • 11