mirror of
https://github.com/Dokploy/examples.git
synced 2026-07-16 19:35:27 +02:00
feat(tanstack): initialize TanStack project with routing, API, and error handling components
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { createFileRoute } from '@tanstack/react-router'
|
||||
|
||||
export const Route = createFileRoute('/_pathlessLayout/_nested-layout/route-b')(
|
||||
{
|
||||
component: LayoutBComponent,
|
||||
},
|
||||
)
|
||||
|
||||
function LayoutBComponent() {
|
||||
return <div>I'm B!</div>
|
||||
}
|
||||
Reference in New Issue
Block a user