import React, {Component} from 'react';
class StopComponent extends Component {
render() {
return (
{this.props.stop.name},
{this.props.stop.id},
{this.props.stop.lat},
{this.props.stop.lon},
{this.props.stop.track}
);
}
}
// TODO Add css
export default StopComponent