I've been trying to use the Kendo UI's Calendar in the following way.
import {Calendar as KendoCalendar} from "react-kendo";
//es6
render() {
//other lines here
return (
<div style={styles.divider}>
<KendoCalendar style={styles.fullwidth} />
</div>
);
}
This ends up getting an error - Unknown props debug, reactive on
tag in vendor js.
There is no such a tag as "debug" or "reactive" anywhere in my js files (as well as in html/php files). If I remove the '' tag, the error disappears.
Could I have any advice?