16 lines
286 B
Vue
16 lines
286 B
Vue
<script setup lang="ts">
|
|
import JobCard from '../Components/ui/job/JobCard.vue'
|
|
import { Job } from "@/types/Jobs/job";
|
|
import { Head } from "@inertiajs/vue3";
|
|
|
|
defineProps<{
|
|
job: Job;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Welcome" />
|
|
|
|
<JobCard :job="job" />
|
|
</template>
|