Hi @Anonymous ,
From the stackoverflow I understand:
1. you must copy the timestamp plugin under your node_models folder:
node_modules/ckeditor4-react/plugins/timestamp/
2. you only need to import the ckeditor
import CKEditor from "ckeditor4-react";
3. You define the config and onBeforeLoad to your CKEditor component
<CKEditor
...
config={{
toolbar: [["Bold"], ["Timestamp"]],
extraPlugins: "timestamp",
}}
onBeforeLoad={(CKEDITOR) => {
CKEDITOR.plugins.add("timestamp", {
///....
}}
/>
I suppose after installing the timestamp plugin in your node_modules, the "timestamp/plugin.js" is added by WebPack in your bundle.js, you at runtime you'll have the code available.
Hope this helps!