added employer column in ready table

This commit was merged in pull request #31.
This commit is contained in:
victorAnumudu
2024-06-13 17:33:47 +01:00
parent c970467f16
commit ea90bd6fc5
15 changed files with 38 additions and 13 deletions
@@ -0,0 +1,11 @@
import {FC} from 'react'
type Props = {
employer_name?: string
}
const EmployerCell: FC<Props> = ({employer_name}) => (
<div className='badge badge-light fw-bolder'>{employer_name}</div>
)
export {EmployerCell}