()
| 11 | import { useT } from "@/lib/i18n-client"; |
| 12 | |
| 13 | function EditorLoading() { |
| 14 | const t = useT(); |
| 15 | return ( |
| 16 | <div className="flex items-center justify-center h-full text-sm text-muted-foreground"> |
| 17 | {t("wiki_link.editor_loading")} |
| 18 | </div> |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | const CodeMirror = dynamic(() => import("@uiw/react-codemirror"), { |
| 23 | ssr: false, |