mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-08 14:25:41 +03:00
12 lines
165 B
TypeScript
12 lines
165 B
TypeScript
|
|
import Heading from "@/components/ui/heading";
|
||
|
|
|
||
|
|
function System() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Heading as="h2">System</Heading>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default System;
|