Components are the core building blocks of Angular UI. Each component consists of a TypeScript file, HTML template, CSS file, and metadata.
app/
└── home/
├── home.component.ts
├── home.component.html
├── home.component.css
└── home.component.spec.ts
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
ngOnInit()ngOnChanges()ngOnDestroy()ngAfterViewInit()Take quizzes related to this topic and see where you stand!
Start Quiz Now