UNPKG

jsx-md

Version:

Generate markdown files with a React-like syntax.

15 lines (14 loc) 326 B
import { Component, PropsWithChildren } from ".."; /** @internal */ interface Props { reference?: string; } /** * @example * ```js * render(<ReferenceLink reference="1">Link text</ReferenceLink>) * === * '[Link text][1]' */ export declare const ReferenceLink: Component<PropsWithChildren<Props>>; export {};