12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
|
|
import {Component} from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-about',
|
||
|
|
standalone: false,
|
||
|
|
templateUrl: './about.component.html',
|
||
|
|
styleUrl: './about.component.scss'
|
||
|
|
})
|
||
|
|
export class AboutComponent {
|
||
|
|
scrollService: any;
|
||
|
|
}
|