WhiteNightsAdminPanel/src/preview/components/WeatherWidget/weather.constant.ts
2025-04-15 21:12:43 +03:00

29 lines
449 B
TypeScript

export const WEATHER_DEFAULTS = {
weatherInfo: {
condition: null,
temperature: null,
humidity: null,
windSpeed: null,
},
forecasts: [
{
weatherInfo: {
condition: null,
temperature: null,
},
},
{
weatherInfo: {
condition: null,
temperature: null,
},
},
{
weatherInfo: {
condition: null,
temperature: null,
},
},
],
};