gtfs-display/src/components/transfers-table-head.js

19 lines
359 B
JavaScript

import React from 'react';
function TransfersTableHead() {
return (
<tr>
<th>from_stop_id</th>
<th>to_stop_id</th>
<th>from_route_id</th>
<th>to_route_id</th>
<th>from_trip_id</th>
<th>to_trip_id</th>
<th>transfer_type</th>
<th>min_transfer_time</th>
</tr>
);
}
export default TransfersTableHead;