From de035f47cee04903c71d76e57b46e9d9169bf2c1 Mon Sep 17 00:00:00 2001 From: Konrad Date: Wed, 31 Jul 2024 12:42:51 +0200 Subject: [PATCH] feat(angular/Component Anatomy): add content to the thread (#6298) * feat(angular/Component Anatomy): add content to the thread * Update src/data/roadmaps/angular/content/component-anatomy@Mp056kNnwsRWeEXuhGPy-.md --------- Co-authored-by: Kamran Ahmed --- .../component-anatomy@Mp056kNnwsRWeEXuhGPy-.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/angular/content/component-anatomy@Mp056kNnwsRWeEXuhGPy-.md b/src/data/roadmaps/angular/content/component-anatomy@Mp056kNnwsRWeEXuhGPy-.md index a4b4afe2c..40cdacf75 100644 --- a/src/data/roadmaps/angular/content/component-anatomy@Mp056kNnwsRWeEXuhGPy-.md +++ b/src/data/roadmaps/angular/content/component-anatomy@Mp056kNnwsRWeEXuhGPy-.md @@ -1 +1,15 @@ -# Component Anatomy \ No newline at end of file +# Component Anatomy + +Angular components are the foundational building blocks of Angular applications, designed to encapsulate both the UI and +the business logic. + +Every component must have: + +- A TypeScript class with behaviors +- An HTML template +- A CSS selector + +Visit the following resources to learn more: + +- [@official@Anatomy of a component](https://angular.dev/guide/components) +