mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 09:45:22 +03:00
12 lines
249 B
JavaScript
12 lines
249 B
JavaScript
import { h } from 'preact';
|
|
import Heading from '../components/Heading';
|
|
import { useEffect } from 'preact/hooks';
|
|
|
|
export default function Logs() {
|
|
return (
|
|
<div className="space-y-4 p-2 px-4">
|
|
<Heading>Logs</Heading>
|
|
</div>
|
|
);
|
|
}
|