sandbox-react/api-with-paging/src/components/table-head.jsx

15 lines
268 B
JavaScript

import React from 'react';
const TableHead = () => {
return (
<tr>
<td>shape_id</td>
<td>shape_pt_lat</td>
<td>shape_pt_lon</td>
<td>shape_pt_sequence</td>
</tr>
);
};
export default TableHead;