Sha256: d0af1e5a9ea9d0168cb18c779275fd832e7964082c8ca08540761e04d91e43af
Contents?: true
Size: 476 Bytes
Versions: 915
Compression:
Stored size: 476 Bytes
Contents
import React, { useState } from 'react' import { RichTextEditor } from '../../' const RichTextEditorDefault = (props) => { const [value, setValue] = useState('Add your text here. You can format your text, add links, quotes, and bullets.'), handleOnChange = (html) => setValue(html) return ( <div> <RichTextEditor onChange={handleOnChange} value={value} {...props} /> </div> ) } export default RichTextEditorDefault
Version data entries
915 entries across 915 versions & 2 rubygems