- Initial commit

This commit is contained in:
2019-07-09 03:48:02 -04:00
commit 8ecf036cc4
105 changed files with 11254 additions and 0 deletions

21
index.js Normal file
View File

@@ -0,0 +1,21 @@
/**
* @format
*/
import { AppRegistry } from 'react-native';
import React from 'react';
import { Provider } from 'react-redux';
import App from './app/App';
import { name as appName } from './app.json';
import { store } from './app/store/index.js';
const connectedApp = () => {
return (
<Provider store={store}>
<App />
</Provider>
);
};
AppRegistry.registerComponent(appName, () => connectedApp);