Recently, I started working on Ionic 3 and decided to implement the new page lazy loading approach. Specifically, I have a page named ControlPage that I am focusing on.
In most of the resources I referred to, it was recommended to include the following code snippet in the control.module.ts file:
exports: [
ControlPage
]
However, I realized that my pages load perfectly fine even without this piece of code in the control.module.ts file. This led me to question the actual purpose of this statement and why my page loading still functions effectively without its inclusion. Can someone clarify this for me?