I am restructuring Angular application and I need to clarify some stuff.
I am using modular structure (Core, Shared, etc). There are some common modules which used almost everywhere for ex CommonModule, FormsModule and many others. Practically I need to understand which approach would be more... native options are:
To include these modules into the Shared module import, exports arrays (thus they can be used everywhere where I import shared module.
To import common modules in all submodules.
Which approach to use?