mirror of
https://github.com/get-drexa/drive.git
synced 2026-02-02 07:31:18 +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>
|
||
|
|
}
|