8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
|
"use client";
|
||
|
|
||
|
import { MDXRemote, MDXRemoteProps } from "next-mdx-remote";
|
||
|
|
||
|
export default function MDXRemoteWrapper(props: MDXRemoteProps) {
|
||
|
return <MDXRemote {...props} />;
|
||
|
}
|