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.

35 lines
619 B

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