mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 21:44:13 +03:00
12 lines
191 B
TypeScript
12 lines
191 B
TypeScript
|
|
import Heading from "@/components/ui/heading";
|
||
|
|
|
||
|
|
function ConfigEditor() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<Heading as="h2">Configuration Editor</Heading>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ConfigEditor;
|