We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 363d180 commit 25db400Copy full SHA for 25db400
next-app/app/docs/governance-terms-mapping/page.tsx
@@ -1,6 +1,9 @@
1
import { readFileSync } from 'fs';
2
import path from 'path';
3
export const dynamic = 'force-static';
4
+/**
5
+ * Renders the content of a markdown file as preformatted text.
6
+ */
7
export default function Page() {
8
const md = readFileSync(path.join(process.cwd(), 'next-app', 'docs', 'governance-terms-mapping.md'), 'utf8');
9
return <pre className="whitespace-pre-wrap text-sm">{md}</pre>;
0 commit comments