proficiency-details.component.ts 294 B

12345678910
  1. import { Component, Input } from '@angular/core';
  2. @Component({
  3. selector: 'app-proficiency-details',
  4. templateUrl: './proficiency-details.component.html',
  5. styleUrl: './proficiency-details.component.scss',
  6. })
  7. export class ProficiencyDetailsComponent {
  8. @Input() proficiency: number = 0;
  9. }