Files
Users-Wrench/src/components/MyActiveJobs/JobActions/CurrentJobAction.jsx
T
CHIEFSOFT\ameye 940a12a2e9 actio panel
2023-07-15 09:51:53 -04:00

33 lines
1.0 KiB
React

import React from 'react'
function CurrentJobAction() {
return (
<div className='job-action dark:bg-black'>
<p className="my-3 py-1 text-base active-owner">
<table className="w-full text-sm text-left text-gray-500 ">
<tbody>
<tr>
<td>
<div className="flex space-x-2 items-center w-full task_action_panel">
<div>
Waiting for the completion message from the client before you can approve.
</div>
{/*<div className="flex flex-col flex-[0.9]"> </div>*/}
</div>
</td>
<td className="text-right py-4 px-2">
<div className="flex justify-center items-center">
.
</div>
</td>
</tr>
</tbody>
</table>
</p>
</div>
)
}
export default CurrentJobAction