import { Component } from '@angular/core'; @Component({ standalone: true, selector: 'app-root', template: ` `, }) export class AppComponent { check = false; toggleCheck() { this.check = !this.check; } }