mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-07 11:45:24 +03:00
12 lines
159 B
TypeScript
12 lines
159 B
TypeScript
import Heading from "@/components/ui/heading";
|
|
|
|
function Logs() {
|
|
return (
|
|
<>
|
|
<Heading as="h2">Logs</Heading>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default Logs;
|