Files
La-Fabrik/src/pages/docs/technical-editor/page.tsx
T

14 lines
370 B
TypeScript

import technicalEditor from "../../../../docs/technical/editor.md?raw";
import { DocsDocument } from "@/features/docs/components/DocsDocument";
export function DocsTechnicalEditorPage(): React.JSX.Element {
return (
<DocsDocument
content={technicalEditor}
frContent={technicalEditor}
meta="04"
title="Editor Technical Notes"
/>
);
}