19 lines
359 B
Vue
19 lines
359 B
Vue
<script setup lang="ts">
|
|
import {Flight} from "@/Types/types";
|
|
import BoardingPass from "@/Components/FlightsGoneBy/BoardingPass.vue";
|
|
|
|
const props = defineProps<{
|
|
flight: Flight
|
|
}>()
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flight-booked">
|
|
<BoardingPass :class="`feed-boarding-pass`" :flight="flight" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|