forked from Github/frigate
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;
|