graph TD;
A[ParentComponent]--imports-->B[ChildComponent];
Last active
June 10, 2022 08:01
-
-
Save LayZeeDK/68b433f3eb6edcd70088409a15f61d2e to your computer and use it in GitHub Desktop.
Indirect dependencies between components declared by NgModules. Standalone Angular components are easier to understand for both developers and compilers. "imports" means import statements in these diagrams.
graph TD;
A[ParentModule]--imports-->B[ParentComponent];
A--imports-->C[ChildModule];
C--imports-->D[ChildComponent];
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment