react-intlayer
Version:
Easily internationalize i18n your React applications with type-safe multilingual content management.
11 lines (10 loc) • 319 B
TypeScript
import { FC } from "react";
//#region src/html/HTMLRendererPlugin.d.ts
type HTMLRendererPluginProps = {
html: string;
userComponents?: Record<string, any>;
};
declare const HTMLRendererPlugin: FC<HTMLRendererPluginProps>;
//#endregion
export { HTMLRendererPlugin };
//# sourceMappingURL=HTMLRendererPlugin.d.ts.map