import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-leave-history', templateUrl: './leave-history.component.html', styleUrls: ['./leave-history.component.css'] }) export class LeaveHistoryComponent implements OnInit { constructor() { } ngOnInit(): void { } }