14 lines
368 B
TypeScript
14 lines
368 B
TypeScript
|
|
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 />;
|
||
|
|
}
|