This commit is contained in:
2026-02-08 23:32:56 +08:00
parent 92b9c3315b
commit e0291d70bf
23 changed files with 2578 additions and 391 deletions

View File

@@ -1,5 +1,6 @@
import { Link, Outlet, createRootRoute } from '@tanstack/react-router'
import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'
import { Toaster } from "@/components/ui/sonner"
export const Route = createRootRoute({
component: RootComponent,
@@ -22,6 +23,7 @@ function RootComponent() {
<hr />
<Outlet />
<TanStackRouterDevtools position="bottom-right" />
<Toaster />
</>
)
}