13 lines
297 B
React
13 lines
297 B
React
import React from 'react'
|
|
|
|
function PastDueJobAction() {
|
|
return (
|
|
<div className=''>
|
|
<p className="my-3 py-1 text-base">
|
|
Waiting for the completion message from the client before you can approve. Owner True & PastDue
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default PastDueJobAction |