import { notFound } from "next/navigation";

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

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