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