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

15 lines
240 B
JavaScript

import React from 'react';
function ShapesTableHead() {
return (
<tr>
<th>shape_id</th>
<th>shape_pt_lat</th>
<th>shape_pt_lon</th>
<th>shape_pt_sequence</th>
</tr>
);
}
export default ShapesTableHead;