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 ca7d647 commit d1fc0ddCopy full SHA for d1fc0dd
src/app/conf/2025/resources/client-mdx.tsx
@@ -1,3 +1,21 @@
1
"use client"
2
3
-export { default } from "./resources.mdx"
+import Resources from "./resources.mdx"
4
+
5
+export default function ResourcesPage() {
6
+ return (
7
+ <Resources
8
+ components={{
9
+ // @ts-expect-error - not sure how to type this
10
+ a: props => {
11
+ const isExternal = props.href.startsWith("http")
12
+ if (isExternal) {
13
+ return <a {...props} target="_blank" rel="noopener noreferrer" />
14
+ }
15
16
+ return <a {...props} />
17
+ },
18
+ }}
19
+ />
20
+ )
21
+}
0 commit comments