diff options
Diffstat (limited to 'src/routes')
-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> |