From 7ec8806dc5f7661ff55779b1ea46ea277c9a903f Mon Sep 17 00:00:00 2001 From: Brad Green Date: Fri, 12 Apr 2019 16:14:45 -0700 Subject: [PATCH] docs: explicitly state purpose of components (#29879) Current description is vague. I'd love to see this doc explicitly state that components are for reusable sets of UI features instead. PR Close #29879 --- aio/content/getting-started/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/getting-started/index.md b/aio/content/getting-started/index.md index 2652eedd03..639a22c66e 100644 --- a/aio/content/getting-started/index.md +++ b/aio/content/getting-started/index.md @@ -149,8 +149,8 @@ Learn more: See the [Template Syntax guide](guide/template-syntax "Template Synt {@a components} ## Components -*Components* are the building blocks of Angular apps. -You've already been working with the product list component. +*Components* define areas of responsibility in your UI that let you reuse these sets of UI functionality. +You've already built one with the product list component. A component is comprised of three things: * **A component class,** which handles data and functionality. In the previous section, the product data and the `share()` method were defined for you in the component class.