Files
La-Fabrik/src/pages/docs/zustand/page.tsx
T
2026-04-30 14:29:29 +02:00

15 lines
386 B
TypeScript

import zustand from "../../../../docs/technical/zustand.md?raw";
import { DocsDocument } from "@/components/docs/DocsDocument";
import { zustandFr } from "@/data/docs/docsTranslations";
export function DocsZustandPage(): React.JSX.Element {
return (
<DocsDocument
content={zustand}
frContent={zustandFr}
meta="05"
title="Zustand Game State"
/>
);
}