forked from Github/frigate
15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
import { h } from 'preact';
|
|
import JSMpegPlayer from '../components/JSMpegPlayer';
|
|
import Heading from '../components/Heading';
|
|
|
|
export default function Birdseye() {
|
|
return (
|
|
<div className="space-y-4 p-2 px-4">
|
|
<Heading size="2xl">Birdseye</Heading>
|
|
<div className="max-w-7xl">
|
|
<JSMpegPlayer camera="birdseye" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|