Stepper de ejemplo integrado

This commit is contained in:
2025-12-29 11:32:56 -06:00
parent 0069775ed4
commit 8dc45d526f
12 changed files with 905 additions and 60 deletions

View File

@@ -0,0 +1,10 @@
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/planes/$planId')({
component: RouteComponent,
})
function RouteComponent() {
const { planId } = Route.useParams()
return <div>Hello "/planes/{planId}"!</div>
}