mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-09 23:05:43 +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;
|