Example work
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2025-07-01 23:16:33 +02:00
parent 7524094a56
commit 6c8f6622dd
32 changed files with 70 additions and 1308 deletions

View File

@@ -1,9 +1,10 @@
import { createFileRoute } from '@tanstack/react-router'
import { createFileRoute } from "@tanstack/react-router"
export const Route = createFileRoute('/blank')({
component: RouteComponent,
export const Route = createFileRoute("/blank")({
component: RouteComponent
})
function RouteComponent() {
return <div>Hello "/blank"!</div>
return <div>Hello "/blank"!</div>
}