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) +