From d7e5535d000d016d9f85bffc81acc450e424f8ec Mon Sep 17 00:00:00 2001 From: Judy Bogart Date: Thu, 31 Jan 2019 10:06:27 -0800 Subject: [PATCH] docs: add custom-element ref to library overview (#28476) PR Close #28476 --- aio/content/guide/libraries.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/aio/content/guide/libraries.md b/aio/content/guide/libraries.md index 6e6b1901b4..b2be51e938 100644 --- a/aio/content/guide/libraries.md +++ b/aio/content/guide/libraries.md @@ -28,3 +28,10 @@ This can help to avoid various bad practices or architecture mistakes that can m Putting code into a separate library is more complex than simply putting everything in one app. It requires more of an investment in time and thought for managing, maintaining, and updating the library. This complexity can pay off, however, when the library is being used in multiple apps. + +
+ +Note that libraries are intended to be used by Angular apps. +To add Angular functionality to non-Angular web apps, you can use [Angular custom elements](guide/elements). + +