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
If you want to use the GoComponent across multiple modules, you should be created a "shared" module and add the GoComponent to the shared module's exports. Then you import shared module into your other modules where you want to use this component.
Find out more information at here
Hope this help!