diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-28 01:32:54 +0200 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2022-04-28 01:33:08 +0200 |
commit | 55cd53f4e6b1e13d2866a84a9631be8f89651cf2 (patch) | |
tree | 5b77ffc3311b490d4f979055e97823011280aace /src/routes/index.svelte | |
parent | ae52909d00cdcda30d6ed07e302c0a50abe70b75 (diff) | |
download | Aurora-data-55cd53f4e6b1e13d2866a84a9631be8f89651cf2.tar.gz Aurora-data-55cd53f4e6b1e13d2866a84a9631be8f89651cf2.zip |
Add one hour forecast
Diffstat (limited to 'src/routes/index.svelte')
-rw-r--r-- | src/routes/index.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 7efda23..64bcce9 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -1,6 +1,6 @@ <script lang="ts"> import WeatherCurrent from '../components/WeatherCurrent.svelte'; - import PredictedSpaceWeather from '../components/PredictedSpaceWeather.svelte'; + import ForecastDrawer from '../components/Forecast/ForecastDrawer.svelte'; //import { theme, fetchingData, fetchDataError, weatherData } from "../stores.ts"; //weatherData.subscribe(console.log); @@ -27,5 +27,5 @@ <div class="homescreen"> <WeatherCurrent/> - <PredictedSpaceWeather /> + <ForecastDrawer/> </div> |