UNPKG

@uiw/react-md-editor

Version:

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

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