Michael Kaufman

Results 4 issues of Michael Kaufman

Won't work with example I don't have anything else in my project called Sound

https://github.com/n-riesco/ijavascript

Steps to recreate: 1. Install docker compose 2. Clone this repository 3. git clone https://github.com/naorye/docker-compose-django-react-postgres.git myapp 4. Run docker-compose up 5. Go to localhost:3000 and it shows in the browser...

``` import RichTextEditor from 'react-rte'; ... const [editorValue, setEditorValue] = React.useState(RichTextEditor.createValueFromString(localPost.body, 'html')); ... const handleChange = value => { setEditorValue(value); setPost(value.toString("html")); console.log(value._cache.html) _updateLocalPost({ ...localPost, body: value._cache.html }) }; ``` `"react-rte":...