jsx-md
Version:
Generate markdown files with a React-like syntax.
18 lines (17 loc) • 385 B
TypeScript
import { Component, PropsWithChildren } from "..";
/** @internal */
interface Props {
label: string;
title?: string;
}
/**
* @example
* ```js
* render(<Reference label="1" title="Title">
* https://example.com
* </Reference>)
* ===
* '\n[1]: https://example.com "Title"\n'
*/
export declare const Reference: Component<PropsWithChildren<Props>>;
export {};