UNPKG

jsx-md

Version:

Generate markdown files with a React-like syntax.

15 lines (14 loc) 283 B
import { Component, PropsWithChildren } from ".."; /** @internal */ interface Props { checked?: boolean; } /** * @example * ```js * render(<Task checked>Test</Task>) * === * '- [x] Test' */ export declare const Task: Component<PropsWithChildren<Props>>; export {};