UNPKG

@nteract/outputs

Version:

components for rendering outputs

21 lines (20 loc) 499 B
import * as React from "react"; interface Props { /** * Markdown text. */ data: string; /** * Media type. Defaults to `text/markdown`. * For more on media types, see: https://www.w3.org/TR/CSS21/media.html%23media-types. */ mediaType: "text/markdown"; } export declare class Markdown extends React.PureComponent<Props> { static defaultProps: { data: string; mediaType: string; }; render(): JSX.Element; } export default Markdown;