UNPKG

@devyk/md-editor

Version:

A custom lightweight markdown editor that can be used as a WYSIWYG with basic to medium features, wherein you can use your own components to render out the styled things

9 lines (6 loc) 224 B
import React from 'react'; declare function CustomMarkdown({ onChange, value }: { onChange: React.Dispatch<React.SetStateAction<string>>; value: string; }): React.JSX.Element; export { CustomMarkdown as default };