UNPKG

@uiw/react-md-editor

Version:

A markdown editor with preview, implemented with React.js and TypeScript.

9 lines (8 loc) 280 B
/// <reference types="react" /> import './Child.less'; import { IToolbarProps } from './'; export type ChildProps = IToolbarProps & { children?: JSX.Element; groupName?: string; }; export default function Child(props: ChildProps): import("react/jsx-runtime").JSX.Element;