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