AltitudeWeb/frontend/src/app/rules/rules.component.ts

20 lines
446 B
TypeScript
Raw Normal View History

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;
}
}