mirror of
https://github.com/get-drexa/drive.git
synced 2026-02-02 09:01:17 +00:00
10 lines
224 B
Plaintext
10 lines
224 B
Plaintext
import { createFileRoute } from '@tanstack/react-router'
|
|
|
|
export const Route = createFileRoute('/_authenticated')({
|
|
component: RouteComponent,
|
|
})
|
|
|
|
function RouteComponent() {
|
|
return <div>Hello "/_authenticated"!</div>
|
|
}
|