mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
13 lines
273 B
TypeScript
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>
|
|
),
|
|
});
|