import Heading from "@/components/ui/heading"; import { Label } from "@/components/ui/label"; import { Switch } from "@/components/ui/switch"; import { useEffect } from "react"; export default function General() { useEffect(() => { document.title = "General Settings - Frigate"; }, []); return ( <> Settings
{}} />
); }