Skip to content

Instantly share code, notes, and snippets.

@LayZeeDK
Last active June 10, 2022 08:01
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LayZeeDK/68b433f3eb6edcd70088409a15f61d2e to your computer and use it in GitHub Desktop.
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[ParentComponent]--imports-->B[ChildComponent];
  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