import React from "react"; import { WarningFilled } from "@ant-design/icons"; export default function JobLinesBillRefernece({ jobline }) { const billLine = jobline.billlines && jobline.billlines[0]; if (!billLine) return null; const subletRequired = billLine.actual_price !== jobline.act_price; return (