14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
import {Component} from '@angular/core';
|
|
import {ScrollService} from '../scroll/scroll.service';
|
|
|
|
@Component({
|
|
selector: 'app-team',
|
|
standalone: false,
|
|
templateUrl: './team.component.html',
|
|
styleUrl: './team.component.scss'
|
|
})
|
|
export class TeamComponent {
|
|
constructor(public scrollService: ScrollService) {
|
|
}
|
|
}
|