frigate/web/src/components/config-form/sections/TelemetrySection.tsx

13 lines
361 B
TypeScript
Raw Normal View History

2026-01-31 21:35:23 +03:00
// 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;