react-server675fbba4
react-serverfilesexamplestanstack-routersrcroutesindex.tsx
examples/tanstack-router/src/routes/index.tsxtsx182 B124aa1f8
import { createFileRoute } from "@tanstack/react-router";

export const Route = createFileRoute("/")({
  component: Index,
});

function Index() {
  return <h3>Welcome Home!</h3>;
}