ymanager/frontend/src/app/days-off-info/days-off-info.component.ts @ cd0882b7
1 |
import { Component, Input } from '@angular/core'; |
---|---|
2 |
|
3 |
@Component({ |
4 |
selector: 'app-days-off-info', |
5 |
templateUrl: './days-off-info.component.html', |
6 |
styleUrls: ['./days-off-info.component.sass'] |
7 |
})
|
8 |
export class DaysOffInfoComponent { |
9 |
|
10 |
@Input() sickDaysRemaining: number; |
11 |
|
12 |
@Input() extraVacationRemaining: number; |
13 |
|
14 |
constructor() { } |
15 |
}
|