frigate/web/src/components/config-form/sections/TelemetrySection.tsx
2026-02-27 09:40:20 -06:00

13 lines
361 B
TypeScript

// Telemetry Section Component
// Global telemetry configuration settings
import { createConfigSection } from "./BaseSection";
import { getSectionConfig } from "../sectionConfigs";
export const TelemetrySection = createConfigSection({
sectionPath: "telemetry",
defaultConfig: getSectionConfig("telemetry", "global"),
});
export default TelemetrySection;