mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-02 00:52:17 +03:00
19 lines
341 B
React
19 lines
341 B
React
import { h } from 'preact';
|
|||
|
|
import { Thead, Th, Tr } from '../../../components/Table';
|
||
|
|
|
||
|
|
const TableHead = () => (
|
||
|
|
<Thead>
|
||
|
|
<Tr>
|
||
|
|
<Th />
|
||
|
|
<Th>Camera</Th>
|
||
|
|
<Th>Label</Th>
|
||
|
|
<Th>Score</Th>
|
||
|
|
<Th>Zones</Th>
|
||
|
|
<Th>Date</Th>
|
||
|
|
<Th>Start</Th>
|
||
|
|
<Th>End</Th>
|
||
|
|
</Tr>
|
||
|
|
</Thead>
|
||
|
|
);
|
||
|
|
export default TableHead;
|