I needed an HTML editor (From DevExtreme) in my Application. Since it needs to be used on different pages based on authorisation mechanisms, I decided to externalise the editor in a component that can be loaded lazily.
However after externalising it, I get this error: 'dx-html-editor' is not a known element
I know that in order to solve this issue, we normally need to import the 'DxHtmlEditorModule' in the corresponding module of the component. Since we are dealing with a lazy-loaded component, the component is not declared in any module.
How to solve this issue of using a component from a 3rd party library in a lazy-loaded component?