UNPKG

mp-common

Version:

This is XPO MarketPlace common libary

20 lines (14 loc) 428 B
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() { } }