12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
// Server-Wrapper für die Kuratoren-Seite.
|
|
// Markiert die Route als dynamisch und rendert die eigentliche Client-Komponente.
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
import CuratorPageClient from './CuratorPageClient';
|
|
|
|
export default function CuratorPage() {
|
|
return <CuratorPageClient />;
|
|
}
|
|
|
|
|