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

12 lines
165 B
TypeScript
Raw Normal View History

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