dishplanner/frontend/app/routes/scheduled-user-dishes.history.tsx

14 lines
390 B
TypeScript
Raw Permalink Normal View History

2025-11-09 13:09:22 +01:00
import type { Route } from "./+types/scheduled-user-dishes.history";
import HistoricalDishes from "~/components/features/schedule/HistoricalDishes";
export function meta({}: Route.MetaArgs) {
return [
{ title: "Dish Planner - History" },
{ name: "description", content: "View historical dishes" },
];
}
export default function HistoryPage() {
return <HistoricalDishes />;
}