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

13 lines
361 B
TypeScript
Raw Normal View History

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