Andrew Budi Kusuma

Results 5 comments of Andrew Budi Kusuma

> I have till now just created my own components with the normal jsx syntax and used bulma extensions as HTML normally.... Bet there is a better way for this,...

any progress to this case? Please let me know if someone solve problem with instance.set('MinDate', new Value here)

> https://github.com/RIP21/react-simplemde-editor > I tried that, it's working. basically use other npm library. I tried react simplemde editor too and it works, I am just want to know if using...

> i got same problem just now, > Finally I solved the problem > `componentDidMount(){ var simplemde = new SimpleMDE({ element: document.getElementById("myId") }) }` > the element i was use...

I found solution for my problem ``` import React, { Component } from 'react' import SimpleMDE from 'simplemde/dist/simplemde.min.js' import 'simplemde/dist/simplemde.min.css' class App extends Component { constructor(props) { super(props) this.state =...