add editor documentation pages

This commit is contained in:
2026-04-28 13:47:56 +02:00
parent f9a0480121
commit a3db0b2f0d
5 changed files with 182 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
import technicalEditor from "../../../../docs/technical/editor.md?raw";
import { DocsDocument } from "@/pages/docs/DocsDocument";
export function DocsTechnicalEditorPage(): React.JSX.Element {
return (
<DocsDocument
content={technicalEditor}
frContent={technicalEditor}
meta="04"
title="Editor Technical Notes"
/>
);
}