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

6 lines (5 loc) 191 B
import React from "react"; export default function CustomMarkdown({ onChange, value }: { onChange: React.Dispatch<React.SetStateAction<string>>; value: string; }): React.JSX.Element;