import { Weather } from "../../data/stub"; import { FETCH_WEATHER } from "../constants"; export const setWeather = (weather: Weather[]) => { console.log(weather) return { type: FETCH_WEATHER, payload: weather, }; }