21 lines
562 B
JavaScript
21 lines
562 B
JavaScript
import React from 'react'
|
|
import { useModal } from '../../../hooks/useAuth'
|
|
|
|
|
|
const ProjectTeam = () => {
|
|
const {onOpen} = useModal("ServiceTeamAllocation");
|
|
|
|
return (
|
|
<div className='card page-min-h mt-2'>
|
|
<div className='row text-end'>
|
|
<div className='col-12'>
|
|
<div className='p-2'><button onClick={onOpen} className='btn btn-sm btn-primary'><i className='bx bx-plus-circle me-2'></i>Assign Employee</button></div>
|
|
</div>
|
|
</div>
|
|
{/* <ServiceProjectTeamList/> */}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ProjectTeam
|