Nav apraksta

candidate-detail.component.ts 315B

123456789101112131415
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-candidate-detail',
  4. templateUrl: './candidate-detail.component.html',
  5. styleUrls: ['./candidate-detail.component.scss']
  6. })
  7. export class CandidateDetailComponent implements OnInit {
  8. constructor() { }
  9. ngOnInit(): void {
  10. }
  11. }

Powered by TurnKey Linux.