v5/src/components/JobCard.jsx
2025-01-29 17:35:25 -05:00

18 lines
360 B
JavaScript

const JobCard = (props) => {
return (
<div class="mb-8">
<h3 class="font-bold text-xl">
{props.job.title} @
<a href={props.job.url} class="text-blue-500 hover:text-blue-600">
{props.job.company}
</a>
</h3>
<p class="text-gray-600 mb-4">
{props.job.range} | {props.job.location}
</p>
</div>
);
};
export default JobCard;