import { useTranslation } from "react-i18next"; import { ComingSoonPage } from "./ComingSoonPage"; /** Shopping list section — routed at `/liste-de-courses`. No backend yet, stub for now. */ export function ShoppingListPage() { const { t } = useTranslation(); return ( ); }