Se agrega vista principaldel detalle del plan

This commit is contained in:
Robert
2025-12-24 15:12:27 -06:00
parent b303398cd4
commit c9ab32598a
10 changed files with 225 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
import { createFileRoute } from '@tanstack/react-router'
import { AppLayout } from '@/components/layout/AppLayout'
import { PlanGrid } from '@/components/plans/PlanGrid'
export const Route = createFileRoute('/planes/')({
component: PlanesPage,
})
function PlanesPage() {
return (
<AppLayout>
<PlanGrid />
</AppLayout>
)
}