Web Development
Angular
Subjective
Oct 23, 2025
What are Angular components and how do you create them?
Detailed Explanation
Components are the basic building blocks of Angular applications. They control a patch of screen called a view. Create using: @Component({ selector: "app-hello", template: "
{{title}}
" }) export class HelloComponent { title = "Hello World"; }. CLI: ng generate component component-nameDiscussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts