Hi,
I am using the "kendo-editor-react-wrapper" in my project, and I want to set a initial value for the Editor component. But I cannot find any helpful thing in EditorOption (including change, keyup, keydown, tools, …, etc.)
I know that I can use Editor.value() to set a value for an editor object, but how can I do this in React?
I found someone wrote like <Editor value={the_value} /> : https://stackoverflow.com/questions/48704782/kendo-editor-react-wrapper-display-an-error
But when I try to write like this, I got an error: " TS2339: [31mProperty 'value' does not exist on type 'IntrinsicAttributes & IntrinsicClassAttributes<Editor> & Readonly<{ children?: ReactNode; }> & Re...'.[39m"
ReactJS 15.6.1 and Typescript 2.4.1 are used in my project.
Maybe I have made some stupid mistakes, but I would be grateful if you could provide a solution or suggestion.