2020-03-10 23:31:37 -04:00
|
|
|
import React, {useEffect} from 'react';
|
2020-02-24 16:54:43 +03:00
|
|
|
import {Provider} from 'react-redux';
|
2020-03-07 14:38:01 -05:00
|
|
|
import StartScreen from './src/components/add-anklan-model';
|
2020-02-24 16:54:43 +03:00
|
|
|
import store from './src/store';
|
2020-03-07 09:30:26 -05:00
|
|
|
const App = props => {
|
2020-03-10 23:31:37 -04:00
|
|
|
useEffect(() => {
|
|
|
|
alert("heeey")
|
|
|
|
})
|
2020-02-24 16:54:43 +03:00
|
|
|
return (
|
|
|
|
<Provider store={store}>
|
|
|
|
<StartScreen />
|
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
export default App;
|