From b65396005f46426375be5458fbe590bf020351c6 Mon Sep 17 00:00:00 2001 From: myNameIsDu Date: Sat, 22 Oct 2022 21:07:47 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=BB=98=E8=AE=A4=E8=B7=B3=E8=BD=AC=20?= =?UTF-8?q?/add-recipe?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/routes/index.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/routes/index.tsx diff --git a/app/routes/index.tsx b/app/routes/index.tsx new file mode 100644 index 0000000..1c69a2f --- /dev/null +++ b/app/routes/index.tsx @@ -0,0 +1,5 @@ +import { redirect } from "@remix-run/node"; + +export const loader = () => { + return redirect("/add-recipe"); +};