I have a shared component called GoComponent that I want to use in 2 modules: FindPageModule and AddPageModule.
When I add it in the declarations of \"FindPageModule\" a
Yes, components can be declared only in one module, and nor are their access inherited in any way, meaning declaring it in the main app module will not give you access to it in any other module.
If you have a component that is used by other modules, generally they way to go is to put it in a shared module
Include component in a shared module:
@NgModule({
declarations: [ SharedComponent ],
exports: [ SharedComponent ]
})
class SharedModule {}
How to use the shared module elsewhere:
@NgModule({
imports: [ SharedModule ]
})
class ModuleWithComponentThatUsesSharedComponent {}
See Also