Skip to content

Commit

Permalink
Job Page Detail
Browse files Browse the repository at this point in the history
  • Loading branch information
KhoaLeTranMinh committed Oct 15, 2023
1 parent 342cb7f commit cac0d44
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/career/src/components/Jobdetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { Link, useLocation } from "react-router-dom"
const Jobdetail = () => {
const location = useLocation()
const jobData = location.state
const { description, title, datePosted, jobID, located } = jobData
return (
<div
className="flex w-screen flex-col"
Expand All @@ -36,11 +37,11 @@ const Jobdetail = () => {
className="mr-60 mb-14 flex h-20 w-full justify-center text-5xl font-bold"
// style={{ outline: "2px solid limegreen" }}
>
Job Detail
{title}
</h1>
</div>

<div className="ml-10 self-start">{jobData.description}</div>
<div className="ml-10 self-start">{description}</div>
<img src="" alt=""></img>
</div>
)
Expand Down

0 comments on commit cac0d44

Please sign in to comment.