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

15 lines
249 B
JavaScript

import React from 'react';
function OverviewTableHead() {
return (
<tr>
<th>Agency</th>
<th>Route Count</th>
<th>Trip Count</th>
<th>{new Date().toDateString()}</th>
</tr>
);
}
export default OverviewTableHead;