/* eslint-disable @typescript-eslint/ban-ts-comment */ "use server" import React from "react" import { MDXRemote } from "next-mdx-remote/rsc" import getCustomComponents from "../../MDXComponents" import type { ScopeType } from "../../MDXComponents" import type { MDXRemoteProps } from "next-mdx-remote" export type MDXContentServerProps = { // eslint-disable-next-line @typescript-eslint/no-explicit-any content: any } & Partial const MDXContentServer = ({ content, ...props }: MDXContentServerProps) => { return ( <> {/* @ts-ignore promise error */} ) } export default MDXContentServer