Concept Flow - Declarations, imports, and exports
Create Component/Directive/Pipe
Declare in @Component/@Directive/@Pipe
Add to declarations array in @NgModule
Import other modules in imports array
Export components/modules in exports array
Use exported components in other modules
Application runs
This flow shows how Angular components or modules are declared, imported, and exported to be used across the app.