Components
Components are the building blocks of an Angular application. They are responsible for rendering the UI and handling user input. Here is an example of a simple component in Angular:
import { Component } from '@angular/core';
@Component({
selector: 'app-hello',
template: '<h1>Hello, {{ name }}!</h1>',
})
export class HelloComponent {
name = 'Angular';
}
No comments:
Post a Comment