From 8379b571f8c9c5a1b6b665d183a8afadf89d3246 Mon Sep 17 00:00:00 2001 From: Vytautas Petrikas Date: Wed, 16 Dec 2020 22:15:33 +0200 Subject: [PATCH] docs(core): add Ivy note to entryComponents page (#35479) PR Close #35479 --- aio/content/guide/entry-components.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/aio/content/guide/entry-components.md b/aio/content/guide/entry-components.md index fb73792aaa..f23542b0d6 100644 --- a/aio/content/guide/entry-components.md +++ b/aio/content/guide/entry-components.md @@ -1,5 +1,12 @@ # Entry components +
+ +Entry components have been deprecated with the [Ivy rendering engine](https://angular.io/guide/ivy). +For more information, see [entryComponents deprecation](https://angular.io/guide/deprecations#entrycomponents-and-analyze_for_entry_components-no-longer-required) in the [Deprecated APIs and features](https://angular.io/guide/deprecations). + +
+ An entry component is any component that Angular loads imperatively, (which means you’re not referencing it in the template), by type. You specify an entry component by bootstrapping it in an NgModule, or including it in a routing definition.