functioning birdseye view

This commit is contained in:
Blake Blackshear
2021-06-12 09:55:40 -05:00
parent 0df35379ef
commit 89c2ae2208
8 changed files with 122 additions and 96 deletions

View File

@@ -0,0 +1,14 @@
import { h } from 'preact';
import JSMpegPlayer from '../components/JSMpegPlayer';
import Heading from '../components/Heading';
export default function Birdseye() {
return (
<div className="space-y-4">
<Heading size="2xl">Birdseye</Heading>
<div>
<JSMpegPlayer camera="birdseye" />
</div>
</div>
);
}