UNPKG

@tntx/markdown-preview-react

Version:
19 lines (15 loc) 488 B
import React from 'react'; import * as react_jsx_runtime from 'react/jsx-runtime'; interface MdPreviewerProps { md: string; style?: React.CSSProperties; className?: string; } declare const MdPreviewer: React.FC<MdPreviewerProps>; interface IProps { showCode?: boolean; code: string; children?: React.ReactNode; } declare const _default: ({ showCode, code, children }: IProps) => react_jsx_runtime.JSX.Element; export { _default as CodePreviewer, MdPreviewer };