mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-26 05:39:04 +03:00
* rearrange event route and splitted into several components * useIntersectionObserver * re-arrange * searchstring improvement * added xs tailwind breakpoint * useOuterClick hook * cleaned up * removed some video controls for mobile devices * lint * moved hooks to global folder * moved buttons for small devices * added button groups Co-authored-by: Bernt Christian Egeland <cbegelan@gmail.com>
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;
|