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