Components are classes that interact with the html file of the component. Components uses @Component decorator. It requires template unlike directive. Constructor is auto generated in components.
This is the definition of component
import { Component } from '@angular/core';
@Component({
templateUrl: './minimum.component.html' // or
template: ''
})
export class MinimumComponent {}
Created 2019-01-23T11:45:03+05:18, updated 2022-01-29T02:34:00+00:00 · History · Edit