mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 17:55:21 +03:00
12 lines
249 B
React
12 lines
249 B
React
|
|
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>
|
||
|
|
);
|
||
|
|
}
|