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