I have been reading this tutorial on creating a feature module : https://johnpapa.net/introducing-angular-modules-feature-modules-2/.
In this tutorial FormsModule
is imported by shared.module.ts
and then exported. Why is that ?
Also why does shared.module.ts
also exports CommonModule
. Why is that?
Also does this mean that I have to export all my SharedModule's imports ?
Best regards