next-mdx-remote-client
Version:
A wrapper of the `@mdx-js/mdx` for the `nextjs` applications in order to load MDX content. It is a fork of `next-mdx-remote`.
10 lines (9 loc) • 315 B
TypeScript
/**
* Copyright (c) @talatkuyuk AKA @ipikuka
* SPDX-License-Identifier: MPL-2.0
*/
import type { MDXClientProps } from "./types.js";
/**
* renders the content on the client side (csr), which is provided by the "hydrate" function.
*/
export declare function MDXClient(props: MDXClientProps): React.JSX.Element;