Updated Map View

This commit is contained in:
2026-06-16 11:16:32 +10:00
parent a270913931
commit 3aba428d2a
19 changed files with 790 additions and 654 deletions
@@ -0,0 +1,16 @@
<script setup lang="ts">
import ToolTipRow from "@/Components/FlightsGoneBy/Tooltips/ToolTipRow.vue";
import {Country} from "@/Types/types";
defineProps<{
country: Country | null | undefined
}>()
</script>
<template>
<ToolTipRow label="Country" :value="country?.name ?? null" :countryCode="country?.code" />
</template>
<style scoped>
</style>