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 eae3e0f commit 096da59Copy full SHA for 096da59
src/theme/MDXContent/index.tsx
@@ -0,0 +1,14 @@
1
+import React from 'react';
2
+import MDXContent from '@theme-original/MDXContent';
3
+import type MDXContentType from '@theme/MDXContent';
4
+import type {WrapperProps} from '@docusaurus/types';
5
+
6
+type Props = WrapperProps<typeof MDXContentType>;
7
8
+export default function MDXContentWrapper(props: Props): JSX.Element {
9
+ return (
10
+ <>
11
+ <MDXContent {...props} />
12
+ </>
13
+ );
14
+}
0 commit comments