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

13 lines
364 B
TypeScript

// Detect Section Component
// Reusable for both global and camera-level detect settings
import { createConfigSection } from "./BaseSection";
import { getSectionConfig } from "../sectionConfigs";
export const DetectSection = createConfigSection({
sectionPath: "detect",
defaultConfig: getSectionConfig("detect", "camera"),
});
export default DetectSection;