diff --git a/aio/content/guide/architecture-modules.md b/aio/content/guide/architecture-modules.md index 241a9612da..6e48da900e 100644 --- a/aio/content/guide/architecture-modules.md +++ b/aio/content/guide/architecture-modules.md @@ -56,7 +56,9 @@ A component and its template together define a *view*. A component can contain a When you create a component, it's associated directly with a single view, called the *host view*. The host view can be the root of a view hierarchy, which can contain *embedded views*, which are in turn the host views of other components. Those components can be in the same NgModule, or can be imported from other NgModules. Views in the tree can be nested to any depth.
- **Note:** The hierarchical structure of views is a key factor in the way Angular detects and responds to changes in the DOM and app data. + +**Note:** The hierarchical structure of views is a key factor in the way Angular detects and responds to changes in the DOM and app data. +
## NgModules and JavaScript modules