docs: expose map performance notes

This commit is contained in:
Tom Boullay
2026-05-25 00:08:29 +02:00
parent 44f9d68ef1
commit 50fa94b3ad
8 changed files with 87 additions and 13 deletions
+13
View File
@@ -0,0 +1,13 @@
import mapPerformance from "../../../../docs/technical/map-performance.md?raw";
import { DocsDocument } from "@/components/docs/DocsDocument";
export function DocsMapPerformancePage(): React.JSX.Element {
return (
<DocsDocument
content={mapPerformance}
frContent={mapPerformance}
meta="12"
title="Map Performance"
/>
);
}