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() {
  }

}
