Integrate ScrollService into multiple components.

This commit is contained in:
2025-04-06 17:27:22 +02:00
parent 85c73c22c8
commit d006a47cf3
6 changed files with 18 additions and 6 deletions
@@ -1,4 +1,5 @@
import {Component} from '@angular/core';
import {ScrollService} from '../scroll/scroll.service';
@Component({
selector: 'app-privacy',
@@ -7,6 +8,7 @@ import {Component} from '@angular/core';
styleUrl: './privacy.component.scss'
})
export class PrivacyComponent {
scrollService: any;
constructor(public scrollService: ScrollService) {
}
}