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