Init commit
This commit is contained in:
15
resources/js/Pages/Job.vue
Normal file
15
resources/js/Pages/Job.vue
Normal file
@ -0,0 +1,15 @@
|
||||
<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>
|
Reference in New Issue
Block a user