mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01: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;
|