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

13 lines
367 B
TypeScript
Raw Normal View History

2026-01-31 21:35:23 +03:00
// Networking Section Component
// Global networking configuration settings
import { createConfigSection } from "./BaseSection";
import { getSectionConfig } from "../sectionConfigs";
export const NetworkingSection = createConfigSection({
sectionPath: "networking",
defaultConfig: getSectionConfig("networking", "global"),
});
export default NetworkingSection;