mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-03-10 10:33:11 +03:00
13 lines
358 B
TypeScript
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;
|