revert Clean and add main page to src
This commit is contained in:
2025-03-10 11:45:44 +01:00
parent 0f3d8d60b1
commit 23730b81db
9 changed files with 241 additions and 16 deletions

13
app/routes/home.tsx Normal file
View File

@@ -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 />;
}