CaffGeek/MBACNationals

View on GitHub
Website/src/app/website/components/participant-name/participant-name.component.ts

Summary

Maintainability
A
2 hrs
Test Coverage
import { Component, OnInit, Input } from '@angular/core';
import { Participant } from 'src/app/services/models/contingent';

@Component({
  selector: 'app-participant-name',
  templateUrl: './participant-name.component.html',
  styleUrls: ['./participant-name.component.scss']
})
export class ParticipantNameComponent implements OnInit {
  @Input() participant: Participant;

  constructor() { }

  ngOnInit(): void {
  }

}