mp-common
Version:
This is XPO MarketPlace common libary
20 lines (14 loc) • 428 B
text/typescript
import { Component, OnInit, Input } from '@angular/core';
import { Representative } from '../../core';
({
selector: 'app-representative',
templateUrl: './representative.component.html',
styleUrls: [ './representative.component.scss' ]
})
export class RepresentativeComponent implements OnInit {
()
public representative: Representative;
constructor() { }
ngOnInit() {
}
}