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