UNPKG

pm-react-text-editor

Version:

A customizable and lightweight rich-text editor for React, built with hooks and modern styling. Supports common formatting tools like bold, italic, lists, headings, links, and more.

11 lines (10 loc) 296 B
interface DropdownOption { label: string; value: string; } interface DropdownProps { options: DropdownOption[]; onChange: (value: string) => void; } declare function Dropdown({ options, onChange }: DropdownProps): import("react/jsx-runtime").JSX.Element; export default Dropdown;