mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 05:51:39 +00:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
|
|
import { createFileRoute } from "@tanstack/react-router"
|
||
|
|
|
||
|
|
export const Route = createFileRoute("/_authenticated/_sidebar-layout/home")({
|
||
|
|
component: RouteComponent,
|
||
|
|
})
|
||
|
|
|
||
|
|
function RouteComponent() {
|
||
|
|
return <div>Hello "/_authenticated/home"!</div>
|
||
|
|
}
|