frigate/web-new/src/pages/Logs.tsx

12 lines
159 B
TypeScript
Raw Normal View History

2023-12-07 20:05:28 +03:00
import Heading from "@/components/ui/heading";
function Logs() {
return (
<>
<Heading as="h2">Logs</Heading>
</>
);
}
export default Logs;