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