Importing
After you have finished the custom widgets development, you need to specify which file will be used for what ( editor or view mode ).
There are only two options:
index.editor.ts- import all necessary files for editor mode in this file.
Example:
import "./Map";
import "./Counter";
import "./<YOUR_WIDGET>"
The Map and Counter folders each contain a default React component export.
index.view.ts- import all necessary files for view mode in this file.
Example:
import "./Counter/export";
import "./Map/export";
import "./<YOUR_WIDGET>/export"
Where export files contain the plain JavaScript logic required for preview mode.