13 lines
390 B
TypeScript
13 lines
390 B
TypeScript
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 />;
|
|
}
|