frigate/web/src/routes/Logs.jsx

12 lines
249 B
React
Raw Normal View History

2022-11-30 20:00:46 +03:00
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>
);
}