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