Files
drive/apps/drive-web/.tanstack/tmp/e340e201-7f425d6e52ab29e5a130bfd2112d6f87

10 lines
224 B
Plaintext
Raw Permalink Normal View History

2026-01-01 18:29:52 +00:00
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/_authenticated')({
component: RouteComponent,
})
function RouteComponent() {
return <div>Hello "/_authenticated"!</div>
}