UNPKG

mp-common

Version:

This is XPO MarketPlace common libary

23 lines (16 loc) 392 B
import { Component, OnInit, Input } from '@angular/core'; import { Stop } from '../../core'; @Component({ selector: 'app-stops', templateUrl: './stops.component.html', styleUrls: [ './stops.component.scss' ] }) export class StopsComponent implements OnInit { @Input() public stops: Stop[]; constructor() { this.stops = []; } ngOnInit() { } }