Currently, I am in the process of building a new angular application that includes various feature modules. As part of this project, I am integrating Material Design components. I am seeking advice on the best approach for importing Material Design modules into my feature modules.
For example: 1. Should I create a separate module called "MaterialModule" and import it into all feature modules?
- Or should I import MaterialModule into ShareModule or something else?
In addition to Material Design, I also plan to use Ag-Grid in my application and I am unsure about where to import it. 1. Should I import Ag-Grid into AppModule? 2. Or should I import it into each individual Feature Module?
Ultimately, my goal is to optimize speed as the application continues to grow.