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 | 2x 2x 10x | import BackToEventsButton from '../shared/BackToEventsButton';
interface LieuxHeaderProps {
onCreateClick: () => void;
}
export default function LieuxHeader({ onCreateClick }: LieuxHeaderProps) {
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 Lieux
</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"
>
+ Nouveau Lieu
</button>
</div>
</header>
);
}
|