Tests
All checks were successful
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2025-07-12 04:40:31 +02:00
parent 5aa5c28465
commit 17f67eeb53
3 changed files with 47 additions and 3 deletions

View File

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