import type { ReactNode } from "react"; /** Visibly marks a section whose real copy is not yet available in texte.txt. */ export function PlaceholderNote({ children }: { children: ReactNode }) { return (
Platzhalter — noch zu ergänzen: {children}
); }