Skip to main content
JobCard component

Props

job
{ id: string
required
job
jobNumber
string
required
jobNumber
status
JobStatus
required
status
jobType
string
required
jobType
customerName
string
required
customerName
customerPhone
string
customerPhone
postcode
string
postcode
aiSummary
string
required
aiSummary
callId
string
required
callId

Usage

import { JobCard } from '@/components/JobCard';

export default function Example() {
  return (
    <JobCard job={job} jobNumber={jobNumber} status={status} jobType={jobType} customerName={customerName} aiSummary={aiSummary} callId={callId} />
  );
}