I am attempting to import the 'OpenDialogContentComponent' component from Module A into Module B, however I am encountering this error:
'Cannot determine the module for class OpenDialogContentComponent in C:/Users/jitdagar/Desktop/TDP/pwt-ui-common/src/app/components/open-dialog-content/open-dialog-content.component.ts! Add OpenDialogContentComponent to the NgModule to fix it.'
The OpenDialogContentComponent is being exported in Module A and can be utilized in Module B using its selector. Nevertheless, my specific requirement is to import the component utilizing the import statement.
Within Module B's component:
import { OpenDialogContentComponent } from '../../../../Module A/src/app/components/open-dialog-content/open-dialog-content.component';