import { Component, OnInit, Input } from '@angular/core';
import { Representative } from '../../core';

@Component({
  selector: 'app-representative',
  templateUrl: './representative.component.html',
  styleUrls: [ './representative.component.scss' ]
})
export class RepresentativeComponent implements OnInit {

  @Input()
  public representative: Representative;

  constructor() { }

  ngOnInit() {
  }

}
