Files
drive/packages/web/src/routes/_authenticated/_sidebar-layout/home.tsx

10 lines
248 B
TypeScript
Raw Normal View History

2025-09-20 13:19:41 +00:00
import { createFileRoute } from "@tanstack/react-router"
export const Route = createFileRoute("/_authenticated/_sidebar-layout/home")({
component: RouteComponent,
})
function RouteComponent() {
return <div>Hello "/_authenticated/home"!</div>
}