12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import {FC} from 'react'
|
|
|
|
type Props = {
|
|
agent?: string
|
|
}
|
|
|
|
const AgentCell: FC<Props> = ({agent}) => (
|
|
<> {agent && <div className='badge badge-light-success fw-bolder'>{agent}</div>}</>
|
|
)
|
|
|
|
export {AgentCell}
|