dishplanner/frontend-old/app/routes/dishes.create.tsx

14 lines
368 B
TypeScript
Raw Permalink Normal View History

2025-11-09 13:09:22 +01:00
import type { Route } from "./+types/dishes.create";
import CreateDishForm from "~/components/features/dishes/CreateDishForm";
export function meta({}: Route.MetaArgs) {
return [
{ title: "Dish Planner - Create Dish" },
{ name: "description", content: "Create a new dish" },
];
}
export default function CreateDishPage() {
return <CreateDishForm />;
}