Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

seasonedcc/wealthy-text-editor

Repository files navigation

pimp-pimp-156114760187876

// src/App.js
import WealthyEditor from 'wealthy-text-editor'

const handleImageUpload = async file => {
  const imgUrl = await uploadToMyServer(file)
  return imgUrl
}

export default props => (
  <WealthyEditor
    onImageUpload={handleImageUpload}
    counter
    onChange={console.log}
    initialText={text}
  />
)