UNPKG

react-markdown-content

Version:

React component to render Markdown content as HTML.

8 lines (7 loc) 224 B
/// <reference types="react" /> interface IMarkdownContentProps { markdownFilePath: string; className?: string; } export declare function MarkdownContent(props: IMarkdownContentProps): JSX.Element; export {};