mirror of
https://github.com/Dokploy/examples.git
synced 2026-06-15 20:25:24 +02:00
12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
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>
|
|
}
|