mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 04:41:43 +03:00
12 lines
250 B
JavaScript
Executable File
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>
|
|
);
|