ultisuite-client/app/agenda/[[...segments]]/view.tsx
R3D347HR4Y d6d18f911b
Some checks failed
E2E / Playwright e2e (push) Has been cancelled
Lots of stuff and mobile app
2026-06-17 00:13:28 +02:00

13 lines
238 B
TypeScript

"use client"
import { Suspense } from "react"
import { AgendaPage } from "@/components/agenda/agenda-page"
export default function AgendaRoutePage() {
return (
<Suspense fallback={null}>
<AgendaPage />
</Suspense>
)
}