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

13 lines
361 B
TypeScript

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