import {Component} from '@angular/core'; import {ScrollService} from '../scroll/scroll.service'; @Component({ standalone: false, selector: 'app-rules', templateUrl: './rules.component.html', styleUrl: './rules.component.scss' }) export class RulesComponent { showExceptions: boolean = false; constructor(public scrollService: ScrollService) { } public toggleExceptions() { this.showExceptions = !this.showExceptions; } }