feat: add placeholder /home page

This commit is contained in:
2025-09-20 13:19:41 +00:00
parent 4dec5e5bb5
commit c10edc0df2
3 changed files with 32 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { createFileRoute } from "@tanstack/react-router"
export const Route = createFileRoute("/_authenticated/_sidebar-layout/home")({
component: RouteComponent,
})
function RouteComponent() {
return <div>Hello "/_authenticated/home"!</div>
}