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

13 lines
358 B
TypeScript

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