All files / components/componentsEvenement/epreuve EpreuvesHeader.tsx

100% Statements 3/3
100% Branches 0/0
100% Functions 1/1
100% Lines 3/3

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 262x           2x 29x                                    
import BackToEventsButton from '../shared/BackToEventsButton';
 
interface EpreuvesHeaderProps {
  onCreateClick: () => void;
}
 
export default function EpreuvesHeader({ onCreateClick }: EpreuvesHeaderProps) {
  return (
    <header className="bg-white shadow-md">
        <div className="flex justify-between items-center py-6 px-6">
            <BackToEventsButton />
            <h1 className="text-3xl font-bold text-gray-900">
              🥇 🥈 🥉 Gestion des Épreuves
            </h1>
          
          <button 
            onClick={onCreateClick}
            className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition-colors"
          >
            + Nouvelle Épreuve
          </button>
        </div>
    </header>
  );
}