forked from beyzatopcu-ba/learning-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
31 lines (25 loc) · 638 Bytes
/
App.js
File metadata and controls
31 lines (25 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React from 'react';
import { Provider } from 'react-redux';
import configureStore from './Redux/ReduxManager';
import Home from './Components/Home';
import HomeEgzersiz from './Components/HomeEgzersiz';
import HomeList from './Components/HomeList';
import UserList from './Components/UserList';
import SagaUI from './Components/SagaUI';
console.clear();
const {store} = configureStore();
const App = () => {
return (
<Provider store={store}>
<SagaUI />
</Provider>
);
};
export default App;