Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 2x 15x 4x 3x | import { Lieu } from '@/types/sportEvenement/lieu';
interface Props {
lieu: Lieu;
onDelete: (id: number) => void;
onEdit: (lieu: Lieu) => void;
}
export default function LieuxTableRow({ lieu, onDelete, onEdit }: Props) {
return (
<tr className="hover:bg-gray-50">
<td className="px-6 py-4 whitespace-nowrap">
<div className="text-sm font-medium text-gray-900">{lieu.nom}</div>
</td>
<td className="px-6 py-4 whitespace-nowrap text-sm font-medium">
<button
onClick={() => onEdit(lieu)}
className="text-blue-600 hover:text-blue-900 mr-3"
>
Modifier
</button>
<button
onClick={() => onDelete(lieu.id)}
className="text-red-600 hover:text-red-900"
>
Supprimer
</button>
</td>
</tr>
);
}
|