Files
examples/tanstack/src/routes/_pathlessLayout/_nested-layout/route-b.tsx

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>
}