import React, { Component } from 'react'; import './css/StopTitle.css'; class StopTitle extends Component { render() { return (

{this.props.stop.name}

{this.props.stop.locations[0]}

); } } export default StopTitle;