In Angular 2+ I’m lazy loading a custom module (section of my app). It lazy loads just fine when i navigate to its route, but it has none of my main module’s theming. Also I’ve found that I have to re-import MatButtonModule in my custom module if I want the matbutton behavior in any components defined in said custom module. This seems like unnecessary bloat.
Do I have to re-import modules that I want to use in my custom module that I’m already importing in the main app module? Do I have to reimport the app theme into the custom module?