You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
676 B

import React from 'react';
import { Provider, useSelector } from 'react-redux'
import { SafeAreaView, ScrollView, View} from 'react-native';
import store from './Actions/store';
import Navigation from './Components/Navigation';
import { WeatherCard } from './Components/WeatherCard';
import { CITIES_DATA, WEATHER_DATA } from './data/stub';
const Card = () => {
// Get nounours data from the current application state
return (
<>
{/* Bind your application store to the Provider store */}
<Provider store={store}>
<Navigation></Navigation>
</Provider>
</>
);
};
export default Card;