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`.
13 lines • 538 B
JavaScript
/**
* Copyright (c) @talatkuyuk AKA @ipikuka
* SPDX-License-Identifier: MPL-2.0
*/
export { hydrate } from "./hydrate.js";
export { hydrateLazy } from "./hydrateLazy.js";
export { hydrateAsync } from "./hydrateAsync.js";
export { MDXClient } from "./MDXClient.js";
export { MDXClientLazy } from "./MDXClientLazy.js";
export { MDXClientAsync } from "./MDXClientAsync.js";
// for who needs to use them without installing the "@mdx-js/react"
export { MDXProvider, useMDXComponents } from "@mdx-js/react";
//# sourceMappingURL=index.js.map