summaryrefslogtreecommitdiff
path: root/app/routes
diff options
context:
space:
mode:
authoryyamashita <yyamashita@mosquit.one>2026-05-06 21:56:00 +0900
committeryyamashita <yyamashita@mosquit.one>2026-05-06 21:56:00 +0900
commit014b29bc22b1c207a03dd560051ecdd5df63f0b1 (patch)
tree3fc027179b84776f643f2ebf1f3fe96f6604648e /app/routes
Initial commit from create-react-router
Diffstat (limited to 'app/routes')
-rw-r--r--app/routes/home.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/routes/home.tsx b/app/routes/home.tsx
new file mode 100644
index 0000000..398e47c
--- /dev/null
+++ b/app/routes/home.tsx
@@ -0,0 +1,13 @@
+import type { Route } from "./+types/home";
+import { Welcome } from "../welcome/welcome";
+
+export function meta({}: Route.MetaArgs) {
+ return [
+ { title: "New React Router App" },
+ { name: "description", content: "Welcome to React Router!" },
+ ];
+}
+
+export default function Home() {
+ return <Welcome />;
+}