ecency-mobile/src/index.js
2018-11-21 22:45:57 +03:00

12 lines
250 B
JavaScript
Executable File

import React from 'react';
import { Provider } from 'react-redux';
import { Application } from './screens/application';
import store from './redux/store/store';
export default () => (
<Provider store={store}>
<Application />
</Provider>
);