import React from 'react';
import { Provider } from 'react-redux';
import { PersistGate } from 'redux-persist/integration/react';
import createStore from './src/Store/store';
import Main from './src/Main';
import { ActivityIndicator, Text, View } from 'react-native';
const { store, persistor } = createStore();
const loading = (Загрузка состояния...);
const App = () => (
);
export default App;