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

13 lines
358 B
TypeScript
Raw Normal View History

// Audio Section Component
// Reusable for both global and camera-level audio settings
2026-01-23 19:04:50 +03:00
import { createConfigSection } from "./BaseSection";
2026-01-31 21:35:23 +03:00
import { getSectionConfig } from "../sectionConfigs";
export const AudioSection = createConfigSection({
sectionPath: "audio",
2026-01-31 21:35:23 +03:00
defaultConfig: getSectionConfig("audio", "camera"),
});
export default AudioSection;