/** * Version simplifiée du composant ChantierActions pour debug */ import React from 'react'; import { Button } from 'primereact/button'; import { ChantierActif } from '../../hooks/useDashboard'; interface ChantierActionsSimpleProps { chantier: ChantierActif; onQuickView?: (chantier: ChantierActif) => void; onManagePhases?: (chantier: ChantierActif) => void; onViewPlanning?: (chantier: ChantierActif) => void; onViewStats?: (chantier: ChantierActif) => void; onMenuAction?: (action: string, chantier: ChantierActif) => void; } const ChantierActionsSimple: React.FC = ({ chantier, onQuickView, onManagePhases, onViewPlanning, onViewStats, onMenuAction }) => { return (
); }; export default ChantierActionsSimple;