Introduced a new BirthdaysComponent with its corresponding HTML, SCSS, and spec files. Added a route for '/birthdays' in the application and integrated it into the module and routing. This component showcases staff and previous staff birthdays.
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) {
|
|
}
|
|
}
|