This repository has been archived on 2026-08-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
drizzli/src/routes/weather/week/[location]/+page.svelte
T
2026-01-07 22:24:02 +01:00

10 lines
169 B
Svelte

<script lang="ts">
let { data } = $props();
const location = data.location;
</script>
<h1>
{location ? location.name : ''}, population: {location.population}
</h1>