diff options
| author | yyamashita <yyamashita@mosquit.one> | 2026-05-06 21:56:00 +0900 |
|---|---|---|
| committer | yyamashita <yyamashita@mosquit.one> | 2026-05-06 21:56:00 +0900 |
| commit | 014b29bc22b1c207a03dd560051ecdd5df63f0b1 (patch) | |
| tree | 3fc027179b84776f643f2ebf1f3fe96f6604648e /app/routes/home.tsx | |
Initial commit from create-react-router
Diffstat (limited to 'app/routes/home.tsx')
| -rw-r--r-- | app/routes/home.tsx | 13 |
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 />; +} |
