Files
stanza/registry/modules/framework-tanstack-start/templates/src/routes/index.tsx
T
2026-05-20 11:52:53 -04:00

13 lines
273 B
TypeScript

import { createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/")({
component: () => (
<main>
<h1>Welcome to stanza</h1>
<p>
Edit <code>src/routes/index.tsx</code> to get started.
</p>
</main>
),
});