FrontendDeveloper.in

Angular question detail

What are components?

Components are the most basic UI building block of an Angular app, which form a tree of Angular components. These components are a subset of directives. Unlike directives, components always have a template, and only one component can be instantiated per element in a template. Let's see a simple example of Angular component

import { Component } from '@angular/core';

@Component ({
selector: 'my-app',
template: ` <div>
<h1>{{title}}</h1>
})

export class AppComponent {
title: string = 'Welcome to Angular world';
}
Back to all Angular questions
Get LinkedIn Premium at Rs 399