Files
FlightsAPI/resources/js/Components/FlightsGoneBy/Tooltips/CountryRow.vue
T
2026-06-16 11:16:32 +10:00

17 lines
356 B
Vue

<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>