import { notFound } from "next/navigation";

type Params = Promise<{ ref: string }>;

// Aucun ticket n'est encore persiste cote agence : toute reference renvoyee
// resulte en 404. Le composant sera reactive quand la table `ticket` sera branchee.
export default async function AdminTicketDetailPage({ params: _params }: { params: Params }) {
  notFound();
}
