import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View, Button } from 'react-native';
import React, { useState, useEffect } from "react";
import Navigation from './navigation/Navigation';
import StackNavigation from './navigation/StackNavigation';
import { createStackNavigator } from '@react-navigation/stack';
import {useDispatch, useSelector} from 'react-redux';
import store from './redux/store';
// Import your application store
//import store from "./redux/store";
import {
SafeAreaView,
SafeAreaProvider,
} from 'react-native-safe-area-context';
import { Provider } from 'react-redux';
export default function App() {
return (
);
}
// ///décommenter quand API Fonctionnel///
// // export default function App() {
// // return (
// // <>
// // {/* Bind your application store to the Provider store */}
// //
// //
// //
// //
// //
// // >
// // );
// // }