mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 21:44:13 +03:00
12 lines
169 B
TypeScript
12 lines
169 B
TypeScript
|
|
import Heading from "@/components/ui/heading";
|
||
|
|
|
||
|
|
function Live() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<Heading as="h2">Birdseye</Heading>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Live;
|