CoralRTE is a lightweight and extensible Rich Text Editor based on React.
() => {
const [value, setValue] = useState(false)
return (
<CoralRTE
value={value}
onChange={html => setValue(html)}
placeholder="Type something"
features={[
<Bold />,
<Italic />,
<Blockquote />,
<Strike />,
<OrderedList />,
<UnorderedList />,
<Spoiler />,
]}
/>
)
}
<CoralRTE
toolbarPosition="bottom"
features={[
<Bold />,
<Italic />,
<Blockquote />,
<Strike />,
<OrderedList />,
<UnorderedList />,
<Spoiler />,
]}
/>