nextgraph-test/packages/web/app/routes/home.tsx

14 lines
318 B
TypeScript
Raw Permalink Normal View History

2025-12-23 16:30:04 +01:00
import { Welcome } from "../welcome/welcome";
2025-12-26 14:12:06 +01:00
import type { Route } from "./+types/home";
2025-12-23 16:30:04 +01:00
export function meta(_args: Route.MetaArgs) {
return [
{ title: "New React Router App" },
{ name: "description", content: "Welcome to React Router!" },
];
}
export default function Home() {
return <Welcome />;
}