15 lines
267 B
TypeScript
15 lines
267 B
TypeScript
import { Suspense } from "react"
|
|
import AgendaView from "./view"
|
|
|
|
export function generateStaticParams() {
|
|
return [{ segments: [] }]
|
|
}
|
|
|
|
export default function AgendaRoutePage() {
|
|
return (
|
|
<Suspense fallback={null}>
|
|
<AgendaView />
|
|
</Suspense>
|
|
)
|
|
}
|